2020-01-15 23:27:11 +01:00
|
|
|
<template lang='pug'>
|
2020-07-25 21:41:22 +02:00
|
|
|
v-app(app)
|
|
|
|
Snackbar
|
2020-07-28 12:24:39 +02:00
|
|
|
Confirm
|
2020-07-25 21:41:22 +02:00
|
|
|
Nav
|
2020-07-28 12:24:39 +02:00
|
|
|
|
2020-07-25 21:41:22 +02:00
|
|
|
v-main(app)
|
2020-07-31 01:03:19 +02:00
|
|
|
v-fade-transition(hide-on-leave)
|
2020-07-25 21:41:22 +02:00
|
|
|
nuxt
|
|
|
|
|
|
|
|
Footer
|
|
|
|
|
2019-04-03 00:25:12 +02:00
|
|
|
</template>
|
2020-01-15 23:27:11 +01:00
|
|
|
<script>
|
|
|
|
import Nav from '~/components/Nav.vue'
|
2020-02-10 00:45:51 +01:00
|
|
|
import FollowMe from '../components/FollowMe'
|
2020-07-25 21:41:22 +02:00
|
|
|
import Snackbar from '../components/Snackbar'
|
|
|
|
import Footer from '../components/Footer'
|
2020-07-28 12:24:39 +02:00
|
|
|
import Confirm from '../components/Confirm'
|
2020-07-29 00:25:45 +02:00
|
|
|
import { mapState } from 'vuex'
|
2020-02-05 00:42:05 +01:00
|
|
|
|
2020-01-15 23:27:11 +01:00
|
|
|
export default {
|
2020-07-25 21:41:22 +02:00
|
|
|
name: 'Default',
|
2020-07-28 12:24:39 +02:00
|
|
|
components: { Nav, FollowMe, Snackbar, Footer, Confirm },
|
2020-07-29 00:25:45 +02:00
|
|
|
computed: mapState(['settings']),
|
|
|
|
created () {
|
|
|
|
this.$vuetify.theme.dark = this.settings['theme.is_dark']
|
|
|
|
this.$vuetify.theme.themes.dark.primary = this.settings['theme.primary']
|
2020-07-31 01:03:19 +02:00
|
|
|
this.$vuetify.theme.themes.light.primary = this.settings['theme.primary']
|
2020-07-29 00:25:45 +02:00
|
|
|
}
|
2020-01-15 23:27:11 +01:00
|
|
|
}
|
2020-07-25 21:41:22 +02:00
|
|
|
</script>
|
2020-09-07 02:23:03 +02:00
|
|
|
<style lang="less">
|
2020-10-09 00:42:03 +02:00
|
|
|
// html, body {
|
|
|
|
// overflow: hidden;
|
|
|
|
// max-height: 100%;
|
|
|
|
// }
|
2020-09-07 02:23:03 +02:00
|
|
|
.v-dialog {
|
2020-10-10 00:40:25 +02:00
|
|
|
width: 600px;
|
2020-10-07 11:12:13 +02:00
|
|
|
max-width: 800px;
|
2020-09-07 02:23:03 +02:00
|
|
|
}
|
2020-10-09 00:42:03 +02:00
|
|
|
|
|
|
|
.theme--dark.v-list {
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.v-autocomplete__content.v-menu__content {
|
|
|
|
scrollbar-width: thin;
|
|
|
|
scrollbar-color: #FF4511;
|
|
|
|
}
|
2020-09-07 02:23:03 +02:00
|
|
|
</style>
|