summaryrefslogtreecommitdiff
path: root/packages/client/src/instance.ts
diff options
context:
space:
mode:
authorKagami Sascha Rosylight <saschanaz@outlook.com>2022-12-19 10:40:57 +0900
committerGitHub <noreply@github.com>2022-12-19 10:40:57 +0900
commit411b08841829fa07e8d87c01947ca6ebdbc70b4a (patch)
tree4810bcc4014889979d3ca7cf9bd7f46079382b61 /packages/client/src/instance.ts
parent12.120.0-alpha.17 (diff)
downloadsharkey-411b08841829fa07e8d87c01947ca6ebdbc70b4a.tar.gz
sharkey-411b08841829fa07e8d87c01947ca6ebdbc70b4a.tar.bz2
sharkey-411b08841829fa07e8d87c01947ca6ebdbc70b4a.zip
refactor: fix broken Vue component custom properties (#9351)
Diffstat (limited to 'packages/client/src/instance.ts')
-rw-r--r--packages/client/src/instance.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/client/src/instance.ts b/packages/client/src/instance.ts
index d24eb2419a..4f591f4fc1 100644
--- a/packages/client/src/instance.ts
+++ b/packages/client/src/instance.ts
@@ -43,10 +43,3 @@ export const emojiTags = computed(() => {
}
return Array.from(tags);
});
-
-// このファイルに書きたくないけどここに書かないと何故かVeturが認識しない
-declare module '@vue/runtime-core' {
- interface ComponentCustomProperties {
- $instance: typeof instance;
- }
-}