init Project

This commit is contained in:
2025-04-09 12:10:46 +08:00
parent 505d08443c
commit 75a1447d66
207 changed files with 26387 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
<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>