aboutsummaryrefslogtreecommitdiff
path: root/client/src/views
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/views')
-rw-r--r--client/src/views/ExamplePage.vue5
-rw-r--r--client/src/views/Home.vue15
2 files changed, 20 insertions, 0 deletions
diff --git a/client/src/views/ExamplePage.vue b/client/src/views/ExamplePage.vue
new file mode 100644
index 0000000..1cb803e
--- /dev/null
+++ b/client/src/views/ExamplePage.vue
@@ -0,0 +1,5 @@
+<template>
+ <div>
+ Example Page.
+ </div>
+</template>
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>