floading

小菊花进度指示器

属性 作用
color 颜色

Demo

  1. <template>
  2. <div>
  3. <floading class="indicator" color="#000000" > </floading>
  4. </div>
  5. </template>
  6. <style>
  7. .indicator {
  8. color: #888888;
  9. height: 40;
  10. width: 40;
  11. margin-right: 10;
  12. }
  13. </style>
  14. <script>
  15. export default {
  16. components:{ },
  17. data () {
  18. return {
  19. }
  20. }
  21. ,
  22. methods:{
  23. }
  24. ,
  25. created:function(){
  26. }
  27. }
  28. </script>