mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
17 lines
215 B
Vue
17 lines
215 B
Vue
<script setup>
|
|
import { RouterLink, RouterView } from 'vue-router'
|
|
import app_footer from './components/footer.vue';
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<RouterView/>
|
|
|
|
<app_footer />
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|