数通智联化工云平台
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.

27 lines
563 B

<!--
@ 作者: 鲁智强
@ 时间: 2023-09-19 15:01:23
@ 备注:
-->
<script lang='ts' setup>
import cc from './cc.vue'
import bb from './bb.vue'
import {ref} from 'vue'
import type { TabsPaneContext } from 'element-plus'
const activeName = ref('first')
</script>
<template>
<el-tabs v-model="activeName" class="demo-tabs" @>
<el-tab-pane label="部门指标" name="aa"></el-tab-pane>
<el-tab-pane label="岗位指标" name="bb"></el-tab-pane>
</el-tabs>
</template>
<style lang='scss' scoped>
*{
background-color: #fff;
}
.asd{
width:100px;
}
</style>