allinssl/frontend/packages/vue/naive-ui/src/App.vue

16 lines
399 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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>