new clean layout

This commit is contained in:
lesion 2021-10-19 16:37:58 +02:00
parent e7d3473316
commit 44f1e56b0b
No known key found for this signature in database
GPG key ID: 352918250B012177

22
layouts/clean.vue Normal file
View file

@ -0,0 +1,22 @@
<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>