created general outline of website
This commit is contained in:
25
app.vue
25
app.vue
@@ -1,6 +1,25 @@
|
||||
<script setup lang="ts">
|
||||
useHead({
|
||||
titleTemplate: (titleChunk: any) => {
|
||||
return titleChunk ? `岐阜高専宇宙工学研究会 SERA - ${titleChunk}` : "岐阜高専宇宙工学研究会 SERA";
|
||||
},
|
||||
link: [
|
||||
{rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg'}
|
||||
],
|
||||
htmlAttrs: {
|
||||
lang: 'ja'
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<NuxtRouteAnnouncer />
|
||||
<NuxtWelcome />
|
||||
<div id="App">
|
||||
<NuxtLayout>
|
||||
<NuxtPage />
|
||||
</NuxtLayout>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
@import "assets/styles/app.css";
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user