123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <view>
-
- <text>pages/test/test.wxml</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- }
-
- ,
- onLoad: function (options) {},
-
- onReady: function () {},
-
- onShow: function () {},
-
- onHide: function () {},
-
- onUnload: function () {},
-
- onPullDownRefresh: function () {},
-
- onReachBottom: function () {},
-
- onShareAppMessage: function () {},
- methods: {}
- };
- </script>
- <style>
- @import './test.css';
- </style>
|