summary refs log tree commit diff stats
path: root/client/src/views
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2022-02-02 12:34:38 +0530
committerAndinus <andinus@nand.sh>2022-02-02 13:03:34 +0530
commit8234345a00d14fee2b5ca18466f19d2df4b4a5c7 (patch)
tree772fc64f448c000df6ae6bea5387b469c82fa75f /client/src/views
downloadvela-8234345a00d14fee2b5ca18466f19d2df4b4a5c7.tar.gz
Initial commit
- Initialize the project with PrimeVue for UI.
Diffstat (limited to 'client/src/views')
-rw-r--r--client/src/views/About.vue5
-rw-r--r--client/src/views/Home.vue17
2 files changed, 22 insertions, 0 deletions
diff --git a/client/src/views/About.vue b/client/src/views/About.vue
new file mode 100644
index 0000000..3fa2807
--- /dev/null
+++ b/client/src/views/About.vue
@@ -0,0 +1,5 @@
+<template>
+  <div class="about">
+    <h1>This is an about page</h1>
+  </div>
+</template>
diff --git a/client/src/views/Home.vue b/client/src/views/Home.vue
new file mode 100644
index 0000000..65a73a1
--- /dev/null
+++ b/client/src/views/Home.vue
@@ -0,0 +1,17 @@
+<template>
+  <div class="home">
+    <HelloWorld msg="Welcome to Your Vue.js App"/>
+  </div>
+</template>
+
+<script>
+// @ is an alias to /src
+import HelloWorld from '@/components/HelloWorld.vue'
+
+export default {
+  name: 'Home',
+  components: {
+    HelloWorld
+  }
+}
+</script>