mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-12 17:40:54 +08:00
15 lines
325 B
Vue
15 lines
325 B
Vue
<template>
|
|
<div class="min-h-screen bg-white">
|
|
<div class="container mx-auto py-8">
|
|
<!-- 页面标题 -->
|
|
<h1 class="text-2xl font-bold mb-8 text-center">Form Builder</h1>
|
|
<!-- 表单构建器组件 -->
|
|
<Demo />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import Demo from './views/Demo'
|
|
</script>
|