2019-12-26 11:46:21 +01:00
|
|
|
<template lang='pug'>
|
2020-07-28 12:24:39 +02:00
|
|
|
v-app(app)
|
|
|
|
Snackbar
|
|
|
|
Confirm
|
|
|
|
Nav
|
|
|
|
|
|
|
|
v-main(app)
|
2021-11-10 11:00:49 +01:00
|
|
|
v-fade-transition(hide-on-leave)
|
2020-01-21 01:18:45 +01:00
|
|
|
nuxt
|
2020-07-28 12:24:39 +02:00
|
|
|
|
|
|
|
Footer
|
|
|
|
|
2019-12-26 11:46:21 +01:00
|
|
|
</template>
|
2020-07-28 12:24:39 +02:00
|
|
|
<script>
|
|
|
|
import Nav from '~/components/Nav.vue'
|
|
|
|
import Snackbar from '../components/Snackbar'
|
|
|
|
import Footer from '../components/Footer'
|
|
|
|
import Confirm from '../components/Confirm'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Default',
|
2021-05-19 16:17:48 +02:00
|
|
|
components: { Nav, Snackbar, Footer, Confirm }
|
2020-07-28 12:24:39 +02:00
|
|
|
}
|
|
|
|
</script>
|