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/store.ts | |
| parent | 12.120.0-alpha.17 (diff) | |
| download | misskey-411b08841829fa07e8d87c01947ca6ebdbc70b4a.tar.gz misskey-411b08841829fa07e8d87c01947ca6ebdbc70b4a.tar.bz2 misskey-411b08841829fa07e8d87c01947ca6ebdbc70b4a.zip | |
refactor: fix broken Vue component custom properties (#9351)
Diffstat (limited to 'packages/client/src/store.ts')
| -rw-r--r-- | packages/client/src/store.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/client/src/store.ts b/packages/client/src/store.ts index 061e1913d6..d1b6e08bc8 100644 --- a/packages/client/src/store.ts +++ b/packages/client/src/store.ts @@ -381,10 +381,3 @@ export class ColdDeviceStorage { }; } } - -// このファイルに書きたくないけどここに書かないと何故かVeturが認識しない -declare module '@vue/runtime-core' { - interface ComponentCustomProperties { - $store: typeof defaultStore; - } -} |