0
0

More than 1 year has passed since last update.

【Vue3 + TypeScript】$storeがエラーになった件

Last updated at Posted at 2023-02-08

エラー内容

よくわからないです。
214758675-a1007b3a-fa6f-47a6-8e21-d880e6e8ffb9.png

解決策

参考サイト

  • 以下のファイルをsrcフォルダに追加
shims-vuex.d.ts

import { Store } from 'vuex';

declare module '@vue/runtime-core' {
  interface ComponentCustomProperties {
    $store: Store<T>;
  }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0