mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 03:08:21 +08:00
ade87f6729
* docs: standardize unified example code format and fix some example type * docs: update some example type * Update docs/examples/descriptions/sizes.vue Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com> * docs: update example-page-header * docs: update example-page-header --------- Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
37 lines
823 B
Vue
37 lines
823 B
Vue
<template>
|
|
<el-tabs type="border-card" class="demo-tabs">
|
|
<el-tab-pane>
|
|
<template #label>
|
|
<span class="custom-tabs-label">
|
|
<el-icon><calendar /></el-icon>
|
|
<span>Route</span>
|
|
</span>
|
|
</template>
|
|
Route
|
|
</el-tab-pane>
|
|
<el-tab-pane label="Config">Config</el-tab-pane>
|
|
<el-tab-pane label="Role">Role</el-tab-pane>
|
|
<el-tab-pane label="Task">Task</el-tab-pane>
|
|
</el-tabs>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Calendar } from '@element-plus/icons-vue'
|
|
</script>
|
|
|
|
<style>
|
|
.demo-tabs > .el-tabs__content {
|
|
padding: 32px;
|
|
color: #6b778c;
|
|
font-size: 32px;
|
|
font-weight: 600;
|
|
}
|
|
.demo-tabs .custom-tabs-label .el-icon {
|
|
vertical-align: middle;
|
|
}
|
|
.demo-tabs .custom-tabs-label span {
|
|
vertical-align: middle;
|
|
margin-left: 4px;
|
|
}
|
|
</style>
|