line.js 353 B

1234567891011121314151617181920
  1. Component({
  2. externalClasses: ['container'],
  3. properties: {
  4. isPortrait: {
  5. type: Boolean,
  6. value: false
  7. },
  8. size: {
  9. type: String,
  10. value: "1rpx"
  11. },
  12. color: {
  13. type: String,
  14. value: "#f3f5f9"
  15. }
  16. },
  17. data: {},
  18. methods: {}
  19. })