disable @typescript-eslint/explicit-module-boundary-types

This commit is contained in:
hina
2020-06-06 18:11:49 +09:00
parent b908351a35
commit b909035fe8
2 changed files with 5 additions and 3 deletions

View File

@@ -82,12 +82,12 @@ export default class MetadataPreview extends Vue {
tags: string[] = [];
created() {
created(): void {
bus.$on('change-tag', (tags: string[]) => (this.tags = tags));
bus.$emit('resend-tag');
}
addTag(tag: string) {
addTag(tag: string): void {
bus.$emit('add-tag', tag);
}