当前位置:网站首页>动态修改el-tab-pane 的label(整理)
动态修改el-tab-pane 的label(整理)
2022-07-30 23:19:00 【我是开心呀】
更详细内容看官方文档:Tabs 标签页
<template>
<el-tabs v-model="name" @tab-click="clickTab">
<el-tab-pane :label="'用户管理('+num+')'" name="first">用户管理</el-tab-pane>
<el-tab-pane label="配置管理" name="second">配置管理</el-tab-pane>
<el-tab-pane label="角色管理" name="third">角色管理</el-tab-pane>
</el-tabs>
</template>
<script>
export default {
data() {
return {
num:'10',
name: "second",
};
},
methods: {
clickTab(tab, event) {
console.log(tab, event);
},
},
};
</script>
边栏推荐
猜你喜欢

Excel基础学习笔记

一文详解:SRv6 Policy模型、算路及引流
![[MySQL] Related operations on databases and tables in MySQL](/img/a5/c92e0404c6a970a62595bc7a3b68cd.gif)
[MySQL] Related operations on databases and tables in MySQL

Lambda表达式

#yyds干货盘点# 面试必刷TOP101:判断链表中是否有环

HCIP第十六天笔记

EasyExcel comprehensive course combat

Go语学习笔记 - gorm使用 - 事务操作 Web框架Gin(十一)

Reverse linked list - head insertion inversion method
![[0x800706D9] solution appears in Microsoft Store](/img/f2/7485cd55fd260220378acd485d8dc9.png)
[0x800706D9] solution appears in Microsoft Store
随机推荐
测试人面试 常被问到的计算机网络题,高薪回答模板来了
10 个关于自动化发布管理的好处
"Code execution cannot continue because MSVCP140.dll was not found, reinstalling the program may resolve the problem, etc." Solutions
【飞控开发基础教程10】疯壳·开源编队无人机-PID 基础原理
“蔚来杯“2022牛客暑期多校训练营4 DHKLN
leetcode 406. Queue Reconstruction by Height 根据身高重建队列(中等)
[MySQL] Related operations on databases and tables in MySQL
PS Basic Learning (1)
grub 学习
HCIP Day 15 Notes
【CTF】buuctf web 详解(持续更新)
Golang 切片删除指定元素的几种方法
2022 China Logistics Industry Conference and Entrepreneur Summit Forum will be held in Hangzhou!
Excel基础学习笔记
Achievements of Science and Technology (31)
"Wei cup" school more than 2022 cattle summer camp 4 Nancy (polocy) pelosi article variance law of Arts
“蔚来杯“2022牛客暑期多校训练营4 L.Black Hole 垃圾计算几何
[MySQL] DQL related operations
Chevrolet Trailblazer, the first choice for safety and warmth for your family travel
【LeetCode】64. 最小路径和 - Go 语言题解