| 123456789101112131415161718192021222324 |
- <template>
- <view class="container"></view>
- </template>
- <script>
- export default {
- data() {
- return {}
- },
- onLoad() {
- uni.switchTab({
- url: '/pages/home/home'
- })
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- .container {
- height: 100vh;
- background-color: #fff;
- }
- </style>
|