多维表格
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.
 
 
 
 
 
 

23 lines
379 B

<script setup lang="ts">
import Text from './Text.vue'
interface Props {
modelValue: any
}
interface Emits {
(event: 'update:modelValue', model: string): void
}
const props = defineProps<Props>()
const emits = defineEmits<Emits>()
const vModel = useVModel(props, 'modelValue', emits)
</script>
<template>
<Text v-model="vModel" />
</template>
<style scoped></style>