This commit is contained in:
Himit_ZH 2021-07-25 11:01:31 +08:00
parent a7b29940ee
commit 002d57f40a
1 changed files with 5 additions and 2 deletions

View File

@ -955,9 +955,12 @@ export default {
}
},
// tagIDtags
// tag nametags
closeTag(tag) {
this.problemTags.splice(this.problemTags.indexOf(tag), 1);
this.problemTags.splice(
this.problemTags.map((item) => item.name).indexOf(tag),
1
);
},
problemTypeChange(type) {