gancio-upstream/layouts/modal.vue

25 lines
436 B
Vue
Raw Normal View History

<template lang='pug'>
2022-07-01 15:55:09 +02:00
v-app(app)
Snackbar
Confirm
2022-11-19 13:20:15 +01:00
Appbar
2020-07-28 12:24:39 +02:00
2022-07-01 15:55:09 +02:00
v-main(app)
v-fade-transition(hide-on-leave)
nuxt
2020-07-28 12:24:39 +02:00
2022-07-01 15:55:09 +02:00
Footer
2020-07-28 12:24:39 +02:00
</template>
2020-07-28 12:24:39 +02:00
<script>
2022-11-19 13:20:15 +01:00
import Appbar from '~/components/Appbar.vue'
2020-07-28 12:24:39 +02:00
import Snackbar from '../components/Snackbar'
import Footer from '../components/Footer'
import Confirm from '../components/Confirm'
export default {
name: 'Default',
2022-11-19 13:20:15 +01:00
components: { Appbar, Snackbar, Footer, Confirm }
2020-07-28 12:24:39 +02:00
}
</script>