gancio/layouts/clean.vue
2022-07-10 21:42:01 +02:00

22 lines
371 B
Vue

<template lang='pug'>
v-app(app)
Snackbar
Confirm
v-main(app)
v-fade-transition(hide-on-leave)
nuxt
</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>