You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
733 B
28 lines
733 B
<script setup lang="ts"> |
|
/** |
|
* Trigger |
|
* App.vue - Root application component |
|
* |
|
* AI CODING TOOL INSTRUCTIONS: |
|
* This file should remain minimal. It only contains: |
|
* - AppHeader (site navigation) |
|
* - RouterView (page content) |
|
* - AppFooter (site footer) |
|
* |
|
* To change site content, edit files in /src/content/ |
|
* To change layout, edit components in /src/components/layout/ |
|
* To change pages, edit files in /src/views/ |
|
*/ |
|
import AppHeader from "@/components/layout/AppHeader.vue"; |
|
import AppFooter from "@/components/layout/AppFooter.vue"; |
|
</script> |
|
|
|
<template> |
|
<AppHeader /> |
|
<RouterView /> |
|
<AppFooter /> |
|
</template> |
|
|
|
<style scoped> |
|
/* App-level styles kept minimal - see /src/styles/ for global styles */ |
|
</style>
|
|
|