mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 14:44:46 +02:00
23 lines
339 B
Vue
23 lines
339 B
Vue
<script setup>
|
|
import { RouterLink, RouterView } from 'vue-router'
|
|
import app_footer from './components/footer.vue';
|
|
import GOLbackground from '@/components/GOLbackground.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<GOLbackground />
|
|
|
|
<main>
|
|
<RouterView/>
|
|
</main>
|
|
|
|
<app_footer />
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
main{
|
|
flex:1;
|
|
}
|
|
</style>
|