美文网首页Web前端之路Vue.js专区
写个vue-loading-template组件。

写个vue-loading-template组件。

作者: 三毛丶 | 来源:发表于2017-05-01 09:24 被阅读276次

趁着5.1来临之际,告诉你们一个好消息:



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>
    <h2>bars</h2>
    <vue-loading type="bars" color="#d9544e" :size="{ width: '50px', height: '50px' }"></vue-loading>
 </template>
  <script>
  import vueLoading from 'vue-loading-template'
  export default {
    name: 'app',
    components: {
      vueLoading
    }
  }
  </script>

相关文章

网友评论

    本文标题:写个vue-loading-template组件。

    本文链接:https://www.haomeiwen.com/subject/nwrttxtx.html