change to folder template

This commit is contained in:
Yusron alamsyah
2026-04-21 09:08:42 +07:00
parent 30ccb5c943
commit 94f5a49270
157 changed files with 142 additions and 142 deletions

No files matched your search

+37
View File
@@ -0,0 +1,37 @@
<script setup lang="ts">
import { ref } from 'vue';
import UiParentCard from '@/components/shared/UiParentCard.vue';
import UiChildCard from '@/components/shared/UiChildCard.vue';
import Basic from '@/components/template/ui-components/alert/Basic.vue';
import Filled from '@/components/template/ui-components/alert/Filled.vue';
import Closable from '@/components/template/ui-components/alert/Closable.vue';
</script>
<template>
<v-row>
<v-col cols="12">
<v-row>
<!-- Basic -->
<v-col cols="12">
<UiChildCard title="Alert Basic">
<Basic />
</UiChildCard>
</v-col>
<!-- Filled -->
<v-col cols="12">
<UiChildCard title="Alert Filled">
<Filled />
</UiChildCard>
</v-col>
<!-- Closable -->
<v-col cols="12">
<UiChildCard title="Alert Closable">
<Closable />
</UiChildCard>
</v-col>
</v-row>
</v-col>
</v-row>
</template>