You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
518 B
25 lines
518 B
|
8 months ago
|
<template>
|
||
|
|
<basic-container>
|
||
|
|
<el-tabs
|
||
|
|
v-model="activeName"
|
||
|
|
type="card"
|
||
|
|
class="demo-tabs"
|
||
|
|
@tab-click="handleClick"
|
||
|
|
>
|
||
|
|
<el-tab-pane label="User" name="first">User</el-tab-pane>
|
||
|
|
<el-tab-pane label="Config" name="second">Config</el-tab-pane>
|
||
|
|
<el-tab-pane label="Role" name="third">Role</el-tab-pane>
|
||
|
|
<el-tab-pane label="Task" name="fourth">Task</el-tab-pane>
|
||
|
|
</el-tabs>
|
||
|
|
</basic-container>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
|
||
|
|
</style>
|