Newer
Older
<!--
- @copyright Copyright (c) 2020 Jonas Heinrich
-
- @author Jonas Heinrich <onny@project-insanity.org>
-
- @license GNU AGPL version 3 or any later version
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-->
<template>
<Content app-name="podcast">
<Navigation />
<AppContent>
<router-view />
</AppContent>
</Content>
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<script>
import Content from '@nextcloud/vue/dist/Components/Content'
import AppContent from '@nextcloud/vue/dist/Components/AppContent'
import Navigation from './components/Navigation'
export default {
name: 'App',
components: {
Content,
Navigation,
AppContent,
},
created() {
this.loadSettings()
},
methods: {
loadSettings() {
// axios.defaults.headers.common = {
// 'User-Agent': 'Nextcloud Podcast App/' + this.$version,
// }
this.$store.dispatch('getVolumeState')
},
},
}
</script>
<style lang="scss">
@media only screen and (min-width: 1024px) {
.app-navigation-toggle {
display: none;
}
}
</style>