aboutsummaryrefslogtreecommitdiff
path: root/client/src/views/Home.vue
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-07-08 17:21:03 +0200
committerMateja <mail@matejamaric.com>2021-07-08 17:21:03 +0200
commitb53de384fb235155e48ab505719d65ee5f2fbe03 (patch)
tree0c3d95fc767ca5c8b70e8aa7d53ed15cc9ee6a60 /client/src/views/Home.vue
downloadmevn-ecommerce-b53de384fb235155e48ab505719d65ee5f2fbe03.tar.gz
mevn-ecommerce-b53de384fb235155e48ab505719d65ee5f2fbe03.zip
Added frontend boilerplate...
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>