tab, toast grid 추가

This commit is contained in:
2025-08-14 11:00:48 +09:00
parent 332b4b2d4b
commit fd6fe43498
15 changed files with 1044 additions and 54 deletions

11
app.vue
View File

@@ -1,6 +1,8 @@
<template>
<NuxtLayout>
<NuxtPage />
<keepAlive>
<NuxtPage :keepalive="true" />
</keepAlive>
</NuxtLayout>
</template>
@@ -8,7 +10,8 @@
@import "./assets/css/main.css";
</style>
<script setup>
<script setup lang="ts">
onMounted(() => {
const script = document.createElement('script')
script.src = '/dist/cy_custom.js'
@@ -21,4 +24,6 @@
}
document.head.appendChild(script)
})
</script>
</script>