summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Treffler <mail@jonathan-treffler.de>2020-08-10 15:55:11 +0200
committerSimon Spannagel <simonspa@kth.se>2021-12-16 20:22:43 +0100
commit4fe2b62b24b824fb0d1950a9c3cd5cab29fb4e54 (patch)
tree6cc4f7b386d95fd2221abd5bf1fa627f7ffeb90a
parente55f03c342b9dd0156b080f938b993f6e566d149 (diff)
moved image loading to file-loader
Signed-off-by: Jonathan Treffler <mail@jonathan-treffler.de>
-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>