2022-06-24 14:55:50 +08:00

19 lines
251 B
Vue

<template>
<form>
<input type="text" v-model="data.remark" />
</form>
</template>
<script setup>
const emit = defineEmits("called");
const props = defineProps({
data: Object,
});
</script>
<style scoped>
form {
padding: 10px;
}
</style>