vue3 taro-ui-vue3 封装Tabbar组件

文章目录

  • 前言
  • 一、taro-ui-vue3安装/引用
    • 1.安装
    • 2.引用
  • 二、配置Tabbar组件
    • 1.创建组件
    • 2.配置`tabBar`
    • 3.使用`tabBar`
  • 我的小程序二维码


前言

提示:根据官网地址进行安装配置创建项目:

taro官网
taro-ui-vue3官网
演示
vue3 taro-ui-vue3 封装Tabbar组件_第1张图片
vue3 taro-ui-vue3 封装Tabbar组件_第2张图片


提示:taro-vue3 创建完项目后

一、taro-ui-vue3安装/引用

1.安装

在项目跟目录执行 npm install taro-ui-vue3 命令安装

2.引用

app.js 引用全局样式

// 引用全局样式
import 'taro-ui-vue3/dist/style/index.scss'

图片如下(示例):
vue3 taro-ui-vue3 封装Tabbar组件_第3张图片

二、配置Tabbar组件

1.创建组件

components 目录下创建 Tabbar.vue
图片如下(示例):
vue3 taro-ui-vue3 封装Tabbar组件_第4张图片
Tabbar.vue代码如下(示例):

<template>
  <view class="tabbar">
    <AtTabBar
      fixed
      :tabList="tabList"
      :current="current"
      @click="handleClick"
    />
  </view>
</template>

<script>
import {AtTabBar} from 'taro-ui-vue3'

export default {
  props: {
    tabKey: {
      type: [String, Number],
      default: 0,
    },
  },
  data() {
    return {
      current: 0,
      tabList: [
        {title: '首页', iconType: 'home', pagePath:'/pages/index/index'},
        {title: '博客', iconType: 'bullet-list',pagePath: "/pages/blog/index"},
        {title: '我的', iconType: 'user', pagePath: "/pages/my/index"}
      ],
    }
  },
  methods:{
    handleClick(value){
      let url = this.$data.tabList[value].pagePath
      wx.switchTab({
        url:url,
      })
    }
  },
  components: {
    AtTabBar,
  }
}
</script>

2.配置tabBar

app.config.js 配置配置

图片如下(示例):
vue3 taro-ui-vue3 封装Tabbar组件_第5张图片

app.config.js代码如下(示例):

export default defineAppConfig({
  pages: [
    'pages/index/index',
    'pages/my/index',
    'pages/blog/index',
  ],
  window: {
    backgroundTextStyle: 'light',
    navigationBarBackgroundColor: '#fff',
    navigationBarTitleText: 'WeChat',
    navigationBarTextStyle: 'black'
  },
  "tabBar": {
    "custom": true,
    "color": "#a9b7b7",
    "selectedColor": "#11cd6e",
    "borderStyle": "black",
    "list": [
      {
        "pagePath": 'pages/index/index',
        "text": "首页"
      },
      {
        "pagePath": 'pages/blog/index',
        "text": "博客"
      },
      {
        "pagePath": "pages/my/index",
        "text": "我的"
      }
    ]
  }
})

3.使用tabBar

pages 目录下创建 blog index my 文件

图片如下(示例):
vue3 taro-ui-vue3 封装Tabbar组件_第6张图片
index目录 index.vue 代码如下(示例):

<template>
  <view class="index">
    <text>{{ msg }}</text>
    <Tabbar></Tabbar>
  </view>
</template>

<script>
import {ref} from 'vue'
import './index.scss'
import Tabbar from "../../components/Tabbar"

export default {
  setup() {
    const msg = ref('Hello world index')
    return {
      msg
    }
  },
  components: {
    Tabbar,
  }
}

</script>

blog目录 index.vue 代码如下(示例):

<template>
  <view class="blog">
    <text>{{ msg }}</text>
    <Tabbar ref="tabbar"></Tabbar>
  </view>
</template>

<script>
import {ref} from 'vue'
import './index.scss'
import Tabbar from "../../components/Tabbar"

export default {
  setup() {
    const msg = ref('Hello world blog')
    return {
      msg
    }
  },
  onShow(){
    this.$refs.tabbar.current=1
  },
  components: {
    Tabbar,
  }
}

</script>

my目录 index.vue 代码如下(示例):

<template>
  <view class="my">
    <text>{{ msg }}</text>
    <Tabbar ref="tabbar"></Tabbar>
  </view>
</template>

<script>
import {ref} from 'vue'
import './index.scss'
import Tabbar from "../../components/Tabbar"

export default {
  setup() {
    const msg = ref('Hello world my')
    return {
      msg
    }
  },
  onShow(){
    this.$refs.tabbar.current=2
  },
  components: {
    Tabbar,
  }
}

</script>

我的小程序二维码

(https://img-blog.csdnimg.cn/6f0dac267ad741c99198a3e724ffdca8.png)

你可能感兴趣的:(vue,vue.js,vue,前端)