1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="content">
- 分包一测试页面
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- }
- </style>
|