feat: 部门详情, 编辑

This commit is contained in:
lilinyuan
2024-06-01 15:57:07 +08:00
parent 5be806104f
commit de2475f39a
4 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<template>
<el-button type="primary" link >
{{ modelValue }}
</el-button>
</template>
<script setup>
import { ref, watch, watchEffect } from 'vue';
const props = defineProps({
modelValue: {
type: String,
default: ''
}
})
// const emit = defineEmits('update: modelValue')
const localText = ref('')
</script>
<style lang="scss" scoped>
</style>