mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
46 lines
1.2 KiB
Vue
46 lines
1.2 KiB
Vue
<template>
|
||
<div class="tab-container">
|
||
<el-tag>mounted times :{{ createdTimes }}</el-tag>
|
||
<el-alert :closable="false" style="width:200px;display:inline-block;vertical-align: middle;margin-left:30px;" title="Tab with keep-alive" type="success"/>
|
||
<el-tabs v-model="activeName" style="margin-top:15px;" type="border-card">
|
||
<el-tab-pane v-for="item in tabMapOptions" :label="item.label" :key="item.key" :name="item.key">
|
||
<keep-alive>
|
||
<tab-pane v-if="activeName==item.key" :type="item.key" @create="showCreatedTimes"/>
|
||
</keep-alive>
|
||
</el-tab-pane>
|
||
</el-tabs>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import tabPane from './components/tabPane'
|
||
|
||
export default {
|
||
name: 'Tab',
|
||
components: { tabPane },
|
||
data() {
|
||
return {
|
||
tabMapOptions: [
|
||
{ label: 'China', key: 'CN' },
|
||
{ label: 'USA', key: 'US' },
|
||
{ label: 'Japan', key: 'JP' },
|
||
{ label: 'Eurozone', key: 'EU' }
|
||
],
|
||
activeName: 'CN',
|
||
createdTimes: 0
|
||
}
|
||
},
|
||
methods: {
|
||
showCreatedTimes() {
|
||
this.createdTimes = this.createdTimes + 1
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.tab-container{
|
||
margin: 30px;
|
||
}
|
||
</style>
|