v4.0.0-beta.1
版本发布时间: 2020-04-25 14:59:09
vuejs/vuex最新发布版本:v4.0.2(2021-06-17 23:52:07)
Features
- Added TypeScript support.
Breaking Changes
Bundles are now aligned with Vue 3
The bundles are generated as below to align with Vue 3 bundles.
-
vuex.global(.prod).js
- For direct use via
<script src="...">
in the browser. Exposes the Vuex global. - Note that global builds are not UMD builds. They are built as IIFEs and is only meant for direct use via
<script src="...">
. - Contains hard-coded prod/dev branches, and the prod build is pre-minified. Use the
.prod.js
files for production.
- For direct use via
-
vuex.esm-browser(.prod).js
- For usage via native ES modules imports (in browser via
<script type="module">
.
- For usage via native ES modules imports (in browser via
-
vuex.esm-bundler.js
- For use with bundlers like
webpack
,rollup
andparcel
. - Leaves prod/dev branches with
process.env.NODE_ENV
guards (must be replaced by bundler). - Does not ship minified builds (to be done together with the rest of the code after bundling).
- For use with bundlers like
-
vuex.cjs.js
- For use in Node.js server-side rendering via
require()
.
- For use in Node.js server-side rendering via
Typings for ComponentCustomProperties
Vuex 4 removes its global typings for this.$store
within Vue Component due to solving issue #994. When using TypeScript, you must provide your own augment declaration.
Please place the following code in your project to have this.$store
working.
// vuex-shim.d.ts
declare module "@vue/runtime-core" {
// Declare your own store states.
interface State {
count: number
}
interface ComponentCustomProperties {
$store: Store<State>;
}
}