gancio/layouts/modal.vue

25 lines
444 B
Vue
Raw Normal View History

<template lang='pug'>
2020-07-28 12:24:39 +02:00
v-app(app)
Snackbar
Confirm
Nav
v-main(app)
v-scroll-y-transition(hide-on-leave)
2020-01-21 01:18:45 +01:00
nuxt
2020-07-28 12:24:39 +02:00
Footer
</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>