12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="containerx">
- <!-- <u-tabbar v-model="tabbarCurrent" :list="tabbarList" :mid-button="true"></u-tabbar> -->
- <u-button type="primary">主要按钮</u-button>
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
-
- const tabbarCurrent = ref(0)
- const tabbarList = ref([
- {
- text: '首页',
- },
- {
- text: '消息',
- },
- {
- text: '我的',
- }
- ])
-
- onLoad(() => {
- console.log('onLoad')
- })
- </script>
- <style lang="scss" scoped>
- .containerx {
-
- }
- </style>
|