24 lines
346 B
Vue
24 lines
346 B
Vue
<template>
|
|
<el-button color="#DED0B2" >
|
|
{{ modelValue || '请选择抄送人员' }}
|
|
</el-button>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
modelValue: {
|
|
type: String,
|
|
default: ''
|
|
}
|
|
})
|
|
|
|
// const emit = defineEmits('update: modelValue')
|
|
|
|
const localText = ref('')
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|