Skip to content
Snippets Groups Projects
App.vue 1.6 KiB
Newer Older
onny's avatar
onny committed
<!--
  - @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>
onny's avatar
onny committed
</template>

<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>