<template>
|
<h4 class="title">胡海涛2022-07-01 16:08:42发起了目标检查上报(检查)--检查</h4>
|
<el-menu
|
:default-active="activeIndex"
|
class="el-menu-demo"
|
background-color="#f5f7fa"
|
active-text-color="#a9d86e"
|
mode="horizontal"
|
@select="handleSelect"
|
>
|
<el-menu-item index="1">表单信息</el-menu-item>
|
<el-menu-item index="2">流程图</el-menu-item>
|
</el-menu>
|
</template>
|
<script lang="ts">
|
import { defineComponent, ref } from 'vue';
|
|
export default defineComponent({
|
setup() {
|
const activeIndex = ref('1');
|
const handleSelect = (key: string, keyPath: string[]) => {
|
console.log(key, keyPath);
|
};
|
return {
|
activeIndex,
|
handleSelect,
|
};
|
},
|
});
|
</script>
|
<style scoped>
|
.title {
|
text-align: center;
|
font-size: 16px;
|
margin-bottom: 20px;
|
}
|
</style>
|