tornado-initiation-ui/layouts/default.vue

21 lines
303 B
Vue
Raw Normal View History

2020-10-09 03:15:45 +02:00
<template>
2020-10-12 19:41:52 +02:00
<div class="wrapper">
<Navbar />
<section class="main-content section">
<div class="container">
2020-10-09 03:15:45 +02:00
<nuxt />
</div>
</section>
</div>
</template>
<script>
2020-10-12 19:41:52 +02:00
import Navbar from '@/components/Navbar'
2020-10-09 03:15:45 +02:00
export default {
2020-10-12 19:41:52 +02:00
components: {
Navbar,
2020-10-09 03:15:45 +02:00
},
}
</script>