From 4fa2f089750238b2950b0b4df34e2b104b0433b2 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 1 Nov 2020 17:08:51 +0100 Subject: [PATCH] Move link share authenticated stuff to separate component --- src/App.vue | 31 ++-------------- src/components/home/contentLinkShare.vue | 46 ++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 28 deletions(-) create mode 100644 src/components/home/contentLinkShare.vue diff --git a/src/App.vue b/src/App.vue index 13d7c83e8..042d1d861 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,34 +5,7 @@
- +
Vikunja @@ -74,10 +47,12 @@ import {CURRENT_LIST, IS_FULLPAGE, KEYBOARD_SHORTCUTS_ACTIVE, MENU_ACTIVE, ONLIN import KeyboardShortcuts from './components/misc/keyboard-shortcuts' import TopNavigation from '@/components/home/topNavigation' import ContentAuth from '@/components/home/contentAuth' +import ContentLinkShare from '@/components/home/contentLinkShare' export default { name: 'app', components: { + ContentLinkShare, ContentAuth, TopNavigation, KeyboardShortcuts, diff --git a/src/components/home/contentLinkShare.vue b/src/components/home/contentLinkShare.vue new file mode 100644 index 000000000..9c364ef37 --- /dev/null +++ b/src/components/home/contentLinkShare.vue @@ -0,0 +1,46 @@ + + + + + \ No newline at end of file