Some checks failed
🚀 Deploy - Demo / deployment (push) Has been cancelled
- 웹훅 URL을 https://admin.youtooplay.com/webhook로 변경 - Nginx 리버스 프록시 설정 파일 추가 - 배포 가이드 업데이트
71 lines
1.9 KiB
Vue
71 lines
1.9 KiB
Vue
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
middleware: 'auth'
|
|
})
|
|
import DemoFormLayoutHorizontalForm from '@/views/pages/form-layouts/DemoFormLayoutHorizontalForm.vue'
|
|
import DemoFormLayoutHorizontalFormWithIcons from '@/views/pages/form-layouts/DemoFormLayoutHorizontalFormWithIcons.vue'
|
|
import DemoFormLayoutMultipleColumn from '@/views/pages/form-layouts/DemoFormLayoutMultipleColumn.vue'
|
|
import DemoFormLayoutVerticalForm from '@/views/pages/form-layouts/DemoFormLayoutVerticalForm.vue'
|
|
import DemoFormLayoutVerticalFormWithIcons from '@/views/pages/form-layouts/DemoFormLayoutVerticalFormWithIcons.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<VRow>
|
|
<VCol
|
|
cols="12"
|
|
md="6"
|
|
>
|
|
<!-- 👉 Horizontal Form -->
|
|
<VCard title="Horizontal Form">
|
|
<VCardText>
|
|
<DemoFormLayoutHorizontalForm />
|
|
</VCardText>
|
|
</VCard>
|
|
</VCol>
|
|
<VCol
|
|
cols="12"
|
|
md="6"
|
|
>
|
|
<!-- 👉 Horizontal Form with Icons -->
|
|
<VCard title="Horizontal Form with Icons">
|
|
<VCardText>
|
|
<DemoFormLayoutHorizontalFormWithIcons />
|
|
</VCardText>
|
|
</VCard>
|
|
</VCol>
|
|
<VCol
|
|
cols="12"
|
|
md="6"
|
|
>
|
|
<!-- 👉 Vertical Form -->
|
|
<VCard title="Vertical Form">
|
|
<VCardText>
|
|
<DemoFormLayoutVerticalForm />
|
|
</VCardText>
|
|
</VCard>
|
|
</VCol>
|
|
<VCol
|
|
cols="12"
|
|
md="6"
|
|
>
|
|
<!-- 👉 Vertical Form with Icons -->
|
|
<VCard title="Vertical Form with Icons">
|
|
<VCardText>
|
|
<DemoFormLayoutVerticalFormWithIcons />
|
|
</VCardText>
|
|
</VCard>
|
|
</VCol>
|
|
<VCol cols="12">
|
|
<!-- 👉 Multiple Column -->
|
|
<VCard title="Multiple Column">
|
|
<VCardText>
|
|
<DemoFormLayoutMultipleColumn />
|
|
</VCardText>
|
|
</VCard>
|
|
</VCol>
|
|
</VRow>
|
|
</div>
|
|
</template>
|