vite+vue+ts+element-plus从零开发管理后台框架(21)-多页签点击切换

编辑src/views/Main.vuescript段添加onTagClick方法

const onTagClick = (path: string) => {
    if (path == fastnavStore.currPath) return
    router.push(path)
}

const onTagClose = (path: string) => {
    const pathNew = fastnavStore.removeData(path)
    if (!pathNew) return
    router.push(pathNew)
}

tmplate段添加点击事件回调

<el-tag v-for="item in fastnavStore.datas"
    :type="item.path == fastnavStore.currPath ? 'primary' : 'info'" size="large"
    :closable="fastnavStore.datas.length != 1" @click="onTagClick(item.path)"  @close="onTagClose(item.path)">
    {{ item.desc }}
</el-tag>

浏览器测试点击不同的页签可以切换了

本作品采用《CC 协议》,转载必须注明作者和本文链接
讨论数量: 0
(= ̄ω ̄=)··· 暂无内容!

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!