index.vue
899 Bytes
<template>
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="日志管理" name="log"><log></log></el-tab-pane>
<el-tab-pane label="字典管理" name="dictionary"><dictionary></dictionary></el-tab-pane>
<el-tab-pane label="号段管理" name="hdgl"><hdgl></hdgl></el-tab-pane>
</el-tabs>
</template>
<script>
import log from "./log"
import dictionary from "./dictionary"
import hdgl from "./hdgl";
export default {
name: "index",
components: {
log,dictionary,hdgl
},
data() {
return {
activeName: "log",
};
},
methods: {
handleClick(tab, event) {
},
},
created() {},
mounted() {},
computed: {},
watch: {},
}
</script>
<style scoped lang="less">
</style>