Files
klp-mono/apps/hand-factory/components/klp-ui/k-form/k-form.vue
2025-10-27 13:21:43 +08:00

30 lines
365 B
Vue

<template>
</template>
<script>
export default {
props: {
formConf: {
require: true,
type: Object
},
},
watch: {
formConf: {
immediate: true,
deep: true,
handler(newVal) {
this.SchemaToJsonForm(newVal)
}
}
}
methods: {
SchemaToJsonForm(schema) {
console.log(schema)
}
}
}
</script>
<style>
</style>