browse.wpy 358 B

12345678910111213141516171819202122232425262728
  1. <style lang="less">
  2. </style>
  3. <template>
  4. <view class="my">
  5. 浏览文件
  6. </view>
  7. </template>
  8. <script>
  9. import wepy from 'wepy'
  10. export default class Browse extends wepy.component {
  11. data = {
  12. list: [
  13. {
  14. id: '0',
  15. title: 'loading'
  16. }
  17. ]
  18. }
  19. methods = {
  20. }
  21. onLoad () {
  22. }
  23. }
  24. </script>