feat: PrimeVue 表单
This commit is contained in:
17
src/App.vue
17
src/App.vue
@ -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>
|
||||
|
Reference in New Issue
Block a user