mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
new clean layout
This commit is contained in:
parent
e7d3473316
commit
44f1e56b0b
1 changed files with 22 additions and 0 deletions
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>
|
Loading…
Reference in a new issue