trusted-setup-server/layouts/default.vue

24 lines
373 B
Vue
Raw Normal View History

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>
<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'
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: {
Navbar,
Loading
2020-01-29 11:54:03 +01:00
}
}
</script>