vite+vue+ts+element-plus从零开发管理后台框架(21)-多页签点击切换
编辑src/views/Main.vue
,script
段添加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 协议》,转载必须注明作者和本文链接
推荐文章: