19 lines
334 B
Vue
19 lines
334 B
Vue
<template>
|
|
<fc-designer ref="designer" :config="config" height="calc(100vh - 160px)" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import FcDesigner from '@form-create/designer'
|
|
|
|
defineOptions({
|
|
name: 'FormGenerator'
|
|
})
|
|
|
|
const designer = ref(null)
|
|
|
|
const config = {
|
|
fieldReadonly: false
|
|
}
|
|
</script>
|