vue中使用css实现loading加载效果

vue中使用css实现loading加载效果

视图层

<div class="number">
   <span
     v-for="(item, index) in 'loading...'"
     :style="'animation: totop 1.5s ' + 0.1 * index + 's infinite ease-out'"
     :key="index"
      >
       	{{ item }}
      span>
    div>

样式层(使用less预编译)


你可能感兴趣的:(vue,css)