| 12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="page">
- 正在加载
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- onShow() {
- // this.$u.route({
- // url: '/pages/signs/home/home',
- // type: "switchTab",
- // params: {}
- // })
- },
- onLoad() {
- // this.$u.route({
- // url: '/pages/signs/home/home',
- // type: "switchTab",
- // params: {}
- // })
- }
- }
- </script>
- <style lang="scss" lang="scss">
- .page{
- height: 100vh;
- width: 100vw;
- color: #fff;
- }
- </style>
|