This commit is contained in:
Viet An
2026-06-07 11:25:43 +07:00
parent ee914cc382
commit 605b016a5f
18 changed files with 156 additions and 141 deletions

View File

@@ -187,50 +187,50 @@ export default {
},
computed: {
common: {
get: function () {
return this.$store.state.common;
get() {
return this.$store.common;
},
set: function (val) {
set(val) {
this.$store.commit("updateCommon", { common: val });
},
},
registermethod: {
get: function () {
return this.$store.state.registermethod;
get() {
return this.$store.registermethod;
},
set: function (val) {
set(val) {
this.$store.commit("updateRegisterMethod", { registermethod: val });
},
},
authmethod: {
get: function () {
return this.$store.state.authmethod;
get() {
return this.$store.authmethod;
},
set: function (val) {
set(val) {
this.$store.commit("updateAuthMethod", { authmethod: val });
},
},
authstatus: {
get: function () {
return this.$store.state.authstatus;
get() {
return this.$store.authstatus;
},
set: function (val) {
set(val) {
this.$store.commit("updateAuthStatus", { authstatus: val });
},
},
usertype: {
get: function () {
return this.$store.state.usertype;
get() {
return this.$store.usertype;
},
set: function (val) {
set(val) {
this.$store.commit("updateUserType", { usertype: val });
},
},
dialog: {
get: function () {
return this.$store.state["dialog"];
get() {
return this.$store.dialog;
},
set: function (val) {
set(val) {
this.$store.commit("updateStore", { name: "dialog", data: val });
},
},