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

<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>