new clean layout
This commit is contained in:
22
layouts/clean.vue
Normal file
22
layouts/clean.vue
Normal 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>
|
||||||
Reference in New Issue
Block a user