You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> This package is in alpha and is rapidly developing.
8
11
9
-
# Features
12
+
## Installation
13
+
14
+
Vue Redux requires **Vue 3 or later**.
15
+
16
+
To use React Redux with your Vue app, install it as a dependency:
17
+
18
+
```bash
19
+
# If you use npm:
20
+
npm install @reduxjs/vue-redux
10
21
11
-
- Compatible with Vue 3+
12
-
-[Redux Toolkit](https://redux-toolkit.js.org/) support
22
+
# Or if you use Yarn:
23
+
yarn add @reduxjs/vue-redux
24
+
```
25
+
26
+
You'll also need to [install Redux](https://redux.js.org/introduction/installation) and [set up a Redux store](https://redux.js.org/recipes/configuring-your-store/) in your app.
27
+
28
+
This assumes that you’re using [npm](http://npmjs.com/) package manager
29
+
with a module bundler like [Webpack](https://webpack.js.org/) or
30
+
[Browserify](http://browserify.org/) to consume [CommonJS
0 commit comments