12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view>
- <view class="u-page">
- </view>
- <!-- 与包裹页面所有内容的元素u-page同级,且在它的下方 -->
- <u-tabbar v-model="current" :list="list"></u-tabbar>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [{
- iconPath: "home",
- selectedIconPath: "home-fill",
- text: '首页',
- customIcon: false,
- pagePath: '/pages/home/index'
- },
- {
- iconPath: "chat",
- selectedIconPath: "chat-fill",
- text: '消息',
- count: 2,
- isDot: false,
- customIcon: false,
- pagePath: '/pages/msg/index'
- },
- {
- iconPath: "account",
- selectedIconPath: "account-fill",
- text: '我的',
- customIcon: false,
- pagePath: '/pages/me/index'
- },
- ],
- current: 1
- };
- }
- }
- </script>
- <style lang="scss">
- </style>
|