30 lines
365 B
Vue
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> |