diff --git a/package-lock.json b/package-lock.json index 4a29f7f080..752052c063 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,6 @@ "core-js": "^3.6.5", "quasar": "^2.0.0", "vue": "^3.0.0", - "vue-class-component": "^8.0.0-0", "vue-i18n": "^9.1.0", "vue-router": "^4.0.0-0", "vuex": "^4.0.0-0" @@ -19418,14 +19417,6 @@ "@vue/shared": "3.2.31" } }, - "node_modules/vue-class-component": { - "version": "8.0.0-rc.1", - "resolved": "https://registry.npmmirror.com/vue-class-component/-/vue-class-component-8.0.0-rc.1.tgz", - "integrity": "sha512-w1nMzsT/UdbDAXKqhwTmSoyuJzUXKrxLE77PCFVuC6syr8acdFDAq116xgvZh9UCuV0h+rlCtxXolr3Hi3HyPQ==", - "peerDependencies": { - "vue": "^3.0.0" - } - }, "node_modules/vue-cli-plugin-i18n": { "version": "2.3.1", "resolved": "https://registry.npmmirror.com/vue-cli-plugin-i18n/-/vue-cli-plugin-i18n-2.3.1.tgz", @@ -37109,12 +37100,6 @@ "@vue/shared": "3.2.31" } }, - "vue-class-component": { - "version": "8.0.0-rc.1", - "resolved": "https://registry.npmmirror.com/vue-class-component/-/vue-class-component-8.0.0-rc.1.tgz", - "integrity": "sha512-w1nMzsT/UdbDAXKqhwTmSoyuJzUXKrxLE77PCFVuC6syr8acdFDAq116xgvZh9UCuV0h+rlCtxXolr3Hi3HyPQ==", - "requires": {} - }, "vue-cli-plugin-i18n": { "version": "2.3.1", "resolved": "https://registry.npmmirror.com/vue-cli-plugin-i18n/-/vue-cli-plugin-i18n-2.3.1.tgz", diff --git a/package.json b/package.json index c006c3ae59..e764791717 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,6 @@ "core-js": "^3.6.5", "quasar": "^2.0.0", "vue": "^3.0.0", - "vue-class-component": "^8.0.0-0", "vue-i18n": "^9.1.0", "vue-router": "^4.0.0-0", "vuex": "^4.0.0-0" @@ -49,4 +48,4 @@ "vue-cli-plugin-quasar": "~4.0.4", "vue-jest": "^5.0.0-0" } -} \ No newline at end of file +} diff --git a/src/App.vue b/src/App.vue index 981b4e3d4c..95692e2db0 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,12 +2,6 @@ - - diff --git a/src/views/Dashboard/Dashboard.vue b/src/views/Dashboard/Dashboard.vue index 9e5b694a9c..353def7093 100644 --- a/src/views/Dashboard/Dashboard.vue +++ b/src/views/Dashboard/Dashboard.vue @@ -4,11 +4,4 @@ - - diff --git a/src/views/Layout/Main.vue b/src/views/Layout/Main.vue index 7a23a49699..7cc63e3956 100644 --- a/src/views/Layout/Main.vue +++ b/src/views/Layout/Main.vue @@ -59,22 +59,14 @@ - diff --git a/src/views/Layout/NotFound.vue b/src/views/Layout/NotFound.vue index 3d8ced2d90..f130f38c22 100644 --- a/src/views/Layout/NotFound.vue +++ b/src/views/Layout/NotFound.vue @@ -2,11 +2,4 @@ Page not found - - diff --git a/src/views/Login/Login.vue b/src/views/Login/Login.vue index 7ab37df334..61991fb492 100644 --- a/src/views/Login/Login.vue +++ b/src/views/Login/Login.vue @@ -4,14 +4,14 @@ - + @@ -24,7 +24,7 @@ filled color="orange" v-model="username" - :label="$t('login.username')" + :label="t('login.username')" lazy-rules :rules="[ (val: string) => (val && val.length > 0) || 'Please type something', @@ -35,16 +35,16 @@ color="orange" type="password" v-model="password" - :label="$t('login.password')" + :label="t('login.password')" lazy-rules :rules="[ (val: string) => (val && val.length > 0) || 'Please type something', ]" /> - +
- +
@@ -54,88 +54,65 @@ -