12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="content">
- 系统首页
- <button @tap="toPath()">分包一测试页面</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- methods: {
- toPath() {
- uni.navigateTo({
- url: '/pagesOne/test/index'
- })
- }
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- }
- </style>
|