23 lines
665 B
Vue
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>
|