diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..03d9549 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/build.gradle b/build.gradle index f75cae0..69c8d4c 100644 --- a/build.gradle +++ b/build.gradle @@ -35,5 +35,5 @@ tasks.withType(NpmTask) { } } -assemble.dependsOn npm_install +npm_run_build.dependsOn npm_install assemble.dependsOn npm_run_build diff --git a/frontend/quasar.conf.js b/frontend/quasar.conf.js index 45b0014..fcf07d6 100644 --- a/frontend/quasar.conf.js +++ b/frontend/quasar.conf.js @@ -37,7 +37,16 @@ module.exports = function (ctx) { 'QList', 'QItem', 'QItemSection', - 'QItemLabel' + 'QItemLabel', + 'QTable', + 'QTh', + 'QTr', + 'QTd', + 'QCard', + 'QCardSection', + 'QCardActions', + 'QCheckbox', + 'QSeparator' ], directives: [ diff --git a/frontend/src/layouts/MyLayout.vue b/frontend/src/layouts/MyLayout.vue index 1faa642..da749d4 100644 --- a/frontend/src/layouts/MyLayout.vue +++ b/frontend/src/layouts/MyLayout.vue @@ -1,11 +1,11 @@ diff --git a/frontend/src/pages/Index.vue b/frontend/src/pages/Index.vue index 45b19b2..4f72725 100644 --- a/frontend/src/pages/Index.vue +++ b/frontend/src/pages/Index.vue @@ -1,13 +1,185 @@ - + diff --git a/frontend/src/pages/Login.vue b/frontend/src/pages/Login.vue new file mode 100644 index 0000000..e69de29 diff --git a/frontend/src/router/routes.js b/frontend/src/router/routes.js index 439376e..8571b3d 100644 --- a/frontend/src/router/routes.js +++ b/frontend/src/router/routes.js @@ -3,6 +3,11 @@ const routes = [ path: "/", component: () => import("layouts/MyLayout.vue"), children: [{ path: "", component: () => import("pages/Index.vue") }] + }, + { + path: "/dashboard/", + component: () => import("layouts/MyLayout.vue"), + children: [{ path: "", component: () => import("pages/Dashboard.vue") }] } ];