2023-03-15 15:59:21 +08:00
|
|
|
<template>
|
2023-09-17 00:10:17 +08:00
|
|
|
<!--<div>表单构建 <svg-icon icon-class="build" /></div>-->
|
|
|
|
<BuildCode :show-btn="showBtn" @reJson="getJson"></BuildCode>
|
|
|
|
<!--<render ref="formRef" :form-json="setJson" @getFormData="getFormData" />-->
|
2023-04-02 01:01:56 +08:00
|
|
|
</template>
|
2023-09-17 00:10:17 +08:00
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
|
|
const showBtn = ref(false)
|
|
|
|
const getJson = (value: any) => {
|
|
|
|
console.log(value)
|
|
|
|
}
|
|
|
|
</script>
|