2020-01-29 11:54:03 +01:00
|
|
|
<template>
|
2020-01-29 14:13:06 +01:00
|
|
|
<div class="wrapper">
|
|
|
|
<Navbar />
|
|
|
|
<section class="main-content section">
|
|
|
|
<div class="container">
|
2020-01-29 11:54:03 +01:00
|
|
|
<nuxt />
|
|
|
|
</div>
|
|
|
|
</section>
|
2020-02-09 15:11:37 +01:00
|
|
|
<Loading />
|
2020-01-29 11:54:03 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-01-29 14:13:06 +01:00
|
|
|
import Navbar from '@/components/Navbar'
|
2020-02-09 15:11:37 +01:00
|
|
|
import Loading from '@/components/Loading'
|
2020-01-29 14:13:06 +01:00
|
|
|
|
2020-01-29 11:54:03 +01:00
|
|
|
export default {
|
2020-01-29 14:13:06 +01:00
|
|
|
components: {
|
2020-02-09 15:11:37 +01:00
|
|
|
Navbar,
|
|
|
|
Loading
|
2020-01-29 11:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|