From 1fa5fc89f672e43dc43b3e5caafb7f2b27dcd3a1 Mon Sep 17 00:00:00 2001
From: mecanicoweb <57642337+mecanicoweb@users.noreply.github.com>
Date: Fri, 3 Jul 2020 22:02:08 -0400
Subject: [PATCH] initial commit
---
src/components/FooterTabs.vue | 30 +++++++++++++++++
src/layouts/Layout.vue | 62 +++++++++++++++++++++++++++++++++++
src/pages/PageSettings.vue | 11 +++++++
src/pages/PageTodo.vue | 13 ++++++++
src/store/store-flag.d.ts | 9 +++++
5 files changed, 125 insertions(+)
create mode 100644 src/components/FooterTabs.vue
create mode 100644 src/layouts/Layout.vue
create mode 100644 src/pages/PageSettings.vue
create mode 100644 src/pages/PageTodo.vue
create mode 100644 src/store/store-flag.d.ts
diff --git a/src/components/FooterTabs.vue b/src/components/FooterTabs.vue
new file mode 100644
index 0000000..76b341c
--- /dev/null
+++ b/src/components/FooterTabs.vue
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/layouts/Layout.vue b/src/layouts/Layout.vue
new file mode 100644
index 0000000..21701c2
--- /dev/null
+++ b/src/layouts/Layout.vue
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+ Quasar Todo List App
+
+ Quasar v{{ $q.version }}
+
+
+
+
+
+ Navigation
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/PageSettings.vue b/src/pages/PageSettings.vue
new file mode 100644
index 0000000..54f461a
--- /dev/null
+++ b/src/pages/PageSettings.vue
@@ -0,0 +1,11 @@
+
+
+ Settings Page
+
+
+
+
+
diff --git a/src/pages/PageTodo.vue b/src/pages/PageTodo.vue
new file mode 100644
index 0000000..c4f6f95
--- /dev/null
+++ b/src/pages/PageTodo.vue
@@ -0,0 +1,13 @@
+
+
+ Todo Page
+
+
+
+
+
+
diff --git a/src/store/store-flag.d.ts b/src/store/store-flag.d.ts
new file mode 100644
index 0000000..ec274bd
--- /dev/null
+++ b/src/store/store-flag.d.ts
@@ -0,0 +1,9 @@
+// THIS FEATURE-FLAG FILE IS AUTOGENERATED,
+// REMOVAL OR CHANGES WILL CAUSE RELATED TYPES TO STOP WORKING
+import "quasar/dist/types/feature-flag";
+
+declare module "quasar/dist/types/feature-flag" {
+ interface QuasarFeatureFlags {
+ store: true;
+ }
+}