Files
vue-formkit-example/src/App.vue
严浩 533a762151
Some checks failed
/ test (push) Failing after 12s
/ surge (push) Successful in 47s
feat: PrimeVue 表单
2024-11-23 22:00:09 +08:00

23 lines
665 B
Vue

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