wzj-vue/src/views/tool/build/index.vue

14 lines
355 B
Vue
Raw Normal View History

2023-03-15 15:59:21 +08:00
<template>
<!--<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>
<script setup lang="ts">
const showBtn = ref(false)
const getJson = (value: any) => {
console.log(value)
}
</script>