summaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/App.vue b/src/App.vue
index b4119937e..2dbcd70fe 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,10 +1,10 @@
<template>
- <Content app-name="news">
- <Sidebar />
+ <Content app-name="news">
+ <Sidebar />
<AppContent>
- <router-view></router-view>
+ <router-view />
</AppContent>
- </Content>
+ </Content>
</template>
<script>
@@ -13,14 +13,14 @@ import AppContent from '@nextcloud/vue/dist/Components/AppContent'
import Sidebar from './components/Sidebar.vue'
export default {
- components: {
- Content,
- Sidebar,
+ components: {
+ Content,
+ Sidebar,
AppContent,
- },
+ },
created() {
this.$store.dispatch('loadFolder')
- }
+ },
}
</script>