refactor: fix broken Vue component custom properties (#9351)

This commit is contained in:
Kagami Sascha Rosylight 2022-12-19 10:40:57 +09:00 committed by GitHub
parent 8f389b6a73
commit 411b088418
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 26 deletions

View file

@ -43,10 +43,3 @@ export const emojiTags = computed(() => {
}
return Array.from(tags);
});
// このファイルに書きたくないけどここに書かないと何故かVeturが認識しない
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$instance: typeof instance;
}
}