aboutsummaryrefslogtreecommitdiff
path: root/client/src/views/Home.vue
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/views/Home.vue')
-rw-r--r--client/src/views/Home.vue15
1 files changed, 15 insertions, 0 deletions
diff --git a/client/src/views/Home.vue b/client/src/views/Home.vue
new file mode 100644
index 0000000..77ed4e4
--- /dev/null
+++ b/client/src/views/Home.vue
@@ -0,0 +1,15 @@
+<template>
+ <div>
+ <ExampleComponent msg="Example text inside example component."/>
+ </div>
+</template>
+
+<script>
+import ExampleComponent from '@/components/ExampleComponent';
+export default {
+ name: 'Home',
+ components: {
+ ExampleComponent
+ }
+}
+</script>