Char2sGu / blogs

0 stars 0 forks source link

声明Vuex中store类型的更好方法 | Just Blogs #5

Open Char2sGu opened 3 years ago

Char2sGu commented 3 years ago

https://thenightmarex.github.io/blogs/2021/07/26/better-way-to-declare-the-type-of-vuex-store/

这不就完了吗?? 12345678910111213import { createStore } from "vuex";const store = createStore({ state: { key: "value", },});export default store;declare