summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/App.vue16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index 987394174..918f8dc1e 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,3 +1,17 @@
<template>
- <div id="content" class="app-news" />
+ <Content app-name="news">
+ <Sidebar />
+ </Content>
</template>
+
+<script>
+import Content from '@nextcloud/vue/dist/Components/Content'
+import Sidebar from './components/Sidebar.vue'
+
+export default {
+ components: {
+ Content,
+ Sidebar,
+ },
+}
+</script>