summaryrefslogtreecommitdiffstats
path: root/js/app
diff options
context:
space:
mode:
authorTucker McKnight <tucker.mcknight@gmail.com>2021-07-05 21:22:03 -0600
committerBenjamin Brahmer <info@b-brahmer.de>2021-07-19 14:58:49 +0200
commit83cdcb016b6bc2679893d5c93325f4003f8b4209 (patch)
treed5c9db3e290f94ea0e68a93870157ad0b144a4f8 /js/app
parent3344431a9b0debdf8d77ea122291c4b2d2b753ee (diff)
Add a Vue component, remove extras
Fixes the problem of the vue components directory not existing. Also removed the demo components that were not meant to be committed. Signed-off-by: Tucker McKnight <tucker.mcknight@gmail.com>
Diffstat (limited to 'js/app')
-rw-r--r--js/app/VueComponents.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/js/app/VueComponents.js b/js/app/VueComponents.js
new file mode 100644
index 000000000..f9ec405ee
--- /dev/null
+++ b/js/app/VueComponents.js
@@ -0,0 +1,3 @@
+var IconLinkCompact = require('../vue_components/IconLinkCompact.vue').default;
+var iconLinkCompactComponent = Vue.component('IconLinkCompact', IconLinkCompact);
+app.value('IconLinkCompact', iconLinkCompactComponent);