index.js 234 B

1234567891011121314151617
  1. import behavior from '~/mixins/video'
  2. Component({
  3. behaviors: [behavior],
  4. properties: {
  5. worksList: {
  6. type: Array,
  7. value: []
  8. }
  9. },
  10. data: {
  11. },
  12. methods: {
  13. },
  14. })