vue2.0 Loding组件(收集转载)

Posted webarn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue2.0 Loding组件(收集转载)相关的知识,希望对你有一定的参考价值。

demo: https://jkchao.github.io/vue-loading/

源码(star ? start : start):https://github.com/jkchao/vue-loading

组件支持:自定义type(暂时提供8种,具体请看demo);color;size;


Start 

npm install vue-loading-template --save

Use in SPA

 <template>
    <div>
    <h2>bars</h2>
    <vue-loading type="bars" color="#d9544e" :size="{ width: ‘50px‘, height: ‘50px‘ }"></vue-loading>
    </div>

 </template>
  <script>
  import vueLoading from ‘vue-loading-template‘
  export default {
    name: ‘app‘,
    components: {
      vueLoading
    }
  }
  </script>

 

以上是关于vue2.0 Loding组件(收集转载)的主要内容,如果未能解决你的问题,请参考以下文章

vue2.0的变化

vue2.0 代码功能片段

精心收集的 48 个 JavaScript 代码片段,仅需 30 秒就可理解!(转载)

vue2.0有哪些变化

Vue2.0父子组件之间的双向数据绑定问题解决方案

Vue2.0学习— 收集表单数据(四十三)