summaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
Diffstat (limited to 'src/views')
-rw-r--r--src/views/InformationAndFAQ/InformationAndFAQ.vue9
-rw-r--r--src/views/InformationAndFAQ/index.js1
-rw-r--r--src/views/Support/Support.vue9
-rw-r--r--src/views/Support/index.js1
4 files changed, 20 insertions, 0 deletions
diff --git a/src/views/InformationAndFAQ/InformationAndFAQ.vue b/src/views/InformationAndFAQ/InformationAndFAQ.vue
new file mode 100644
index 00000000..ede7b3d8
--- /dev/null
+++ b/src/views/InformationAndFAQ/InformationAndFAQ.vue
@@ -0,0 +1,9 @@
+<template>
+ <span>This Page (Information And FAQ) In develop</span>
+</template>
+
+<script>
+export default {
+ name: 'InformationAndFAQ',
+};
+</script>
diff --git a/src/views/InformationAndFAQ/index.js b/src/views/InformationAndFAQ/index.js
new file mode 100644
index 00000000..6bbeaba6
--- /dev/null
+++ b/src/views/InformationAndFAQ/index.js
@@ -0,0 +1 @@
+export { default } from './InformationAndFAQ.vue';
diff --git a/src/views/Support/Support.vue b/src/views/Support/Support.vue
new file mode 100644
index 00000000..a23ad55f
--- /dev/null
+++ b/src/views/Support/Support.vue
@@ -0,0 +1,9 @@
+<template>
+ <span>This Page (Support) In develop</span>
+</template>
+
+<script>
+export default {
+ name: 'Support',
+};
+</script>
diff --git a/src/views/Support/index.js b/src/views/Support/index.js
new file mode 100644
index 00000000..80b31621
--- /dev/null
+++ b/src/views/Support/index.js
@@ -0,0 +1 @@
+export { default } from './Support.vue';