summaryrefslogtreecommitdiffstats
path: root/src/App.vue
blob: 6ff5bf5b799495abc7414a843c63f0dfedd5b515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
	<NcContent app-name="news">
		<Sidebar />
		<NcAppContent>
			<router-view />
		</NcAppContent>
	</NcContent>
</template>

<script>
import NcContent from '@nextcloud/vue/dist/Components/NcContent.js'
import NcAppContent from '@nextcloud/vue/dist/Components/NcAppContent.js'
import Sidebar from './components/Sidebar.vue'

export default {
	components: {
		NcContent,
		NcAppContent,
		Sidebar,
	},
	created() {
		this.$store.dispatch('loadFolder')
	},
}
</script>