update code #75

Merged
dev merged 2 commits from dev-luannv24-fixbug-17 into dev 2025-08-19 12:45:55 +09:00
5 changed files with 30 additions and 39 deletions
Showing only changes of commit a5c35809fa - Show all commits

View File

@ -13,7 +13,7 @@ export default {
data() {
return {
mode: null,
isLoading: false
// isLoading: false
};
},
computed: {
@ -29,12 +29,10 @@ export default {
setThemeChange: 'setThemeChange',
}),
themeChange() {
this.isLoading = true;
// this.isLoading = true;
this.mode = !this.mode;
this.$vuetify.theme.isDark = this.mode;
this.setThemeChange(this.mode);
// console.log(this.mode)
// console.log(this.$vuetify.theme.isDark)
},
},
};

View File

@ -97,7 +97,6 @@ export default {
},
watch: {
selectedObjId(val) {
console.log(val);
if (val === 'TAG') {
this.detailList[1].class = 'd-none ';
this.detailList[2].class = 'd-block pl-4 mt-2';