Files
AllinSSL/frontend/packages/vue/naive-ui/src/App.vue
chudong d147bc7a82 【修复】条件节点前fromNodeId传值问题
【修复】部署参数默认错误问题
【测设】部分项目代码结构
【同步】前端项目代码
2025-05-09 18:44:33 +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>