wzj-vue/src/views/tool/build/index.vue
2023-09-23 21:04:49 +08:00

14 lines
355 B
Vue

<template>
<!--<div>表单构建 <svg-icon icon-class="build" /></div>-->
<BuildCode :show-btn="showBtn" @reJson="getJson"></BuildCode>
<!--<render ref="formRef" :form-json="setJson" @getFormData="getFormData" />-->
</template>
<script setup lang="ts">
const showBtn = ref(false)
const getJson = (value: any) => {
console.log(value)
}
</script>