stateLed.js 329 B

123456789101112131415161718192021222324252627282930
  1. // components/led..js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. color: {
  8. type: String,
  9. default: "#6cf"
  10. },
  11. width:{
  12. type: Number,
  13. default: 10
  14. }
  15. },
  16. /**
  17. * 组件的初始数据
  18. */
  19. data: {
  20. },
  21. /**
  22. * 组件的方法列表
  23. */
  24. methods: {
  25. }
  26. })