mirror of
https://github.com/BioArchLinux/Rosa.git
synced 2025-03-10 12:02:43 +00:00
12 lines
244 B
Vue
12 lines
244 B
Vue
<script setup>
|
|
import Navbar from '@/components/Navbar.vue'
|
|
import Footer from './components/Footer.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<Navbar></Navbar>
|
|
<div class="content">
|
|
<router-view></router-view>
|
|
</div>
|
|
<Footer></Footer>
|
|
</template>
|