feat: PrimeVue 表单
Some checks failed
/ test (push) Failing after 12s
/ surge (push) Successful in 47s

This commit is contained in:
严浩
2024-11-23 22:00:09 +08:00
parent fa094e68ff
commit 533a762151
11 changed files with 402 additions and 20 deletions

View File

@ -1,9 +1,22 @@
<script setup lang="ts">
import TutorialForm from './tutorial-form/index.vue'
import ZodForm from './zod-form/index.vue'
import AllCustom from './all-custom/all-custom.vue'
import AllCustomPrimevue from './all-custom-primevue/all-custom-primevue.vue'
</script>
<template>
<ZodForm />
<TutorialForm />
<ZodForm v-if="false" />
<TutorialForm v-if="false" />
<div class="flex items-start">
<div class="w-1/2 p-4 bg-white rounded-lg shadow-md dark:bg-gray-800 dark:text-white m-4 ">
<AllCustom />
</div>
<div class="w-1/2 p-4 bg-white rounded-lg shadow-md dark:bg-gray-800 dark:text-white m-4 ">
<AllCustomPrimevue class="w-1/2" />
</div>
</div>
</template>