vue-use-vuex

0.2.2 • Public • Published

vue-use-vuex

Fixed: must call Vue.use(Vuex) before creating a store instance.

If you normally use vuex, just like this:

// Entry
import Vue from 'vue';
import Vuex from 'vuex';
Vue.use(Vuex);
import 'some-store.js';

You Will get an Error:
image
WTF!

let's use vue-use-vuex to fixed it.

Install

npm install vue-use-vuex

Example

// Entry
import Vue from 'vue';
import 'vue-use-vuex'; // Just should import once
import 'some-store.js';
 
// no problem!

webpack-1

If you used webpack 1.x, you should used loader's include:

var vueUseVuexPath = require.resolve('vue-use-vuex');
 
// ...
    {
      test: /\.js$/,
      include: [path.join(__dirname, "src"), vueUseVuexPath],
      loader: 'babel-loader'
    }

Readme

Keywords

Package Sidebar

Install

npm i vue-use-vuex

Weekly Downloads

12

Version

0.2.2

License

none

Last publish

Collaborators

  • hezedu