loading.vue 369 Bytes
Newer Older
姜雷 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<template>
  <div class="mf-loading-container">
    <img src="../images/loading.gif">
  </div>
</template>
<script type="text/ecmascript-6">
  const COMPONENT_NAME = 'loading'
  export default {
    name: COMPONENT_NAME
  }
</script>
<style lang="less">
  .mf-loading-container {
    img {
      width: 50px;
      height: 50px;
      display: block;
    }
  }
</style>