mint-ui —— tab-container的使用
tab-container 面板,可切换显示子页面。 常与 navbar 、 tabbar 结合使用 Import 按需引入: import { TabContainer, TabContainerItem } from 'mint-ui'; Vue.component(TabContainer.name, TabContainer); Vue.component(TabContainerItem.name, TabContainerItem); 全局导入:全局导入后不用再导入 import Mint from 'mint-ui' import 'mint-ui/lib/style.css' Vue.use(Mint); API 示例 xxx.vue : <template> <div> <div class="nav"> <mt-button size="small" @click.native.prevent="active = 'tab-container1'">tab 1</mt-button> <mt-button size="small" @click.native.prevent="active = 'tab-container2'">tab 2</mt-button> <mt-button size="small" @click.native.prevent=