1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00
stardew_community_checklist/layouts/default.vue
2021-04-15 16:42:21 -04:00

33 lines
504 B
Vue

<template>
<div id="app">
<HeaderBar />
<section id="main-section" class="section">
<div class="container">
<nuxt />
</div>
</section>
<AppFooter />
</div>
</template>
<script>
import HeaderBar from '@/components/HeaderBar'
import AppFooter from '@/components/Footer'
export default {
components: {
HeaderBar,
AppFooter
},
data () {
return {
}
}
}
</script>
<style lang="scss" scoped>
#main-section {
min-height: 100vh
}
</style>