12345678910111213141516171819202122232425262728 |
- <style lang="less">
- </style>
- <template>
- <view class="my">
- 浏览文件
- </view>
- </template>
- <script>
- import wepy from 'wepy'
- export default class Browse extends wepy.component {
- data = {
- list: [
- {
- id: '0',
- title: 'loading'
- }
- ]
- }
- methods = {
- }
- onLoad () {
- }
- }
- </script>
|