Files
bio_frontend/app.vue

30 lines
558 B
Vue
Raw Normal View History

2025-08-08 13:11:33 +09:00
<template>
<NuxtLayout>
2025-08-14 11:00:48 +09:00
<keepAlive>
<NuxtPage :keepalive="true" />
</keepAlive>
2025-08-08 13:11:33 +09:00
</NuxtLayout>
</template>
<style>
@import "./assets/css/main.css";
</style>
2025-08-14 11:00:48 +09:00
<script setup lang="ts">
2025-08-08 13:11:33 +09:00
onMounted(() => {
const script = document.createElement('script')
script.src = '/dist/cy_custom.js'
script.async = true
script.onload = () => {
console.log('✅ cy_custom.js loaded')
}
script.onerror = () => {
console.error('❌ Failed to load cy_custom.js')
}
document.head.appendChild(script)
})
2025-08-14 11:00:48 +09:00
</script>