mirror of
https://github.com/BeamMP/BeamMP-Website.git
synced 2025-07-04 00:35:25 +00:00
11 lines
183 B
Vue
11 lines
183 B
Vue
<script setup>
|
|
import Navbar from '@/components/NavBar.vue'
|
|
import Footer from '@/components/Footer.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<Navbar />
|
|
<router-view />
|
|
<Footer />
|
|
</template>
|