Files
AllinSSL/frontend/packages/vue/naive-ui/src/App.vue
chudong f1a75afaba 【同步】前端项目源码
【修复】工作流兼容问题
2025-05-10 11:53:11 +08:00

16 lines
399 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>