diff options
| author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2022-12-19 10:40:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-19 10:40:57 +0900 |
| commit | 411b08841829fa07e8d87c01947ca6ebdbc70b4a (patch) | |
| tree | 4810bcc4014889979d3ca7cf9bd7f46079382b61 /packages/client/src/instance.ts | |
| parent | 12.120.0-alpha.17 (diff) | |
| download | sharkey-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.ts | 7 |
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; - } -} |