You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
303 B
Vue
22 lines
303 B
Vue
6 months ago
|
<template>
|
||
|
<div class="tool">
|
||
|
</div>
|
||
|
</template>
|
||
|
<script lang="ts" setup>
|
||
|
import { watch } from 'vue';
|
||
|
|
||
|
const props = defineProps({
|
||
|
formData: Object
|
||
|
});
|
||
|
|
||
|
const { formData } = toRefs(props);
|
||
|
watch(formData, e => {
|
||
|
console.log(formData.value);
|
||
|
});
|
||
|
</script>
|
||
|
<style scoped lang="less">
|
||
|
</style>
|
||
|
|
||
|
|
||
|
|