init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user