feat : 需求变更详情修改

This commit is contained in:
clay
2024-06-09 19:19:02 +08:00
parent fd61fcc485
commit d1c6b23aa4
3 changed files with 179 additions and 105 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>