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

@@ -47,7 +47,7 @@ export default {
}
},
watch: {
record: function (newVal) {
record() {
this.value = this.$numtoString(this.record[this.attr]);
},
},

View File

@@ -99,10 +99,10 @@ export default {
},
computed: {
login: {
get: function () {
get() {
return this.$store.login;
},
set: function (val) {
set(val) {
this.$store.commit("updateLogin", { login: val });
},
},