gancio-upstream/layouts/clean.vue

23 lines
371 B
Vue
Raw Normal View History

2021-10-19 16:37:58 +02:00
<template lang='pug'>
2022-07-01 15:55:09 +02:00
v-app(app)
Snackbar
Confirm
2021-10-19 16:37:58 +02:00
2022-07-01 15:55:09 +02:00
v-main(app)
v-fade-transition(hide-on-leave)
nuxt
2021-10-19 16:37:58 +02:00
</template>
<script>
import Snackbar from '../components/Snackbar'
import Confirm from '../components/Confirm'
export default {
name: 'Default',
components: { Snackbar, Confirm },
created () {
this.$vuetify.theme.dark = false
}
}
</script>