mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-07-20 12:49:04 +00:00
11 lines
207 B
Vue
11 lines
207 B
Vue
<script>
|
|
import Backdrop from "./components/Backdrop.vue";
|
|
import Footer from "./components/Footer.vue";
|
|
</script>
|
|
<template>
|
|
<div>
|
|
<Backdrop />
|
|
<router-view />
|
|
<Footer />
|
|
</div>
|
|
</template>
|