mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
18 lines
331 B
Vue
18 lines
331 B
Vue
<template>
|
|
<div class="app-wrapper text-gray-300 bg-gray-800">
|
|
<Navbar />
|
|
<div class="app-main min-h-screen flex items-center">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Navbar from '~/components/navbar.vue'
|
|
|
|
export default {
|
|
components: {
|
|
Navbar
|
|
}
|
|
}
|
|
</script>
|