This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-fronted/src/components/common/alert/alertMessageInfoTab.vue

27 lines
596 B
Vue
Raw Normal View History

2022-03-28 16:44:40 +08:00
<template>
<div>
<el-tabs v-model="activeName" type="card">
<el-tab-pane label="用户管理" name="first">用户管理</el-tab-pane>
<el-tab-pane label="配置管理" name="second">配置管理</el-tab-pane>
<el-tab-pane label="角色管理" name="third">角色管理</el-tab-pane>
<el-tab-pane label="定时任务补偿" name="fourth">定时任务补偿</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
export default {
name: 'alertMessageInfoTab',
data () {
return {
activeName: '',
}
}
}
</script>
<style scoped>
</style>