list-view.js 248 B

123456789101112131415
  1. Component({
  2. externalClasses: ['tui-view-class'], //自定义样式
  3. properties: {
  4. title: {
  5. type: String,
  6. value: ''
  7. },
  8. unlined: {
  9. type: String,
  10. value: '' //top,bottom,all
  11. }
  12. },
  13. data: {},
  14. methods: {}
  15. })