Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 609 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 609 Bytes

Build Status

Installation

Standalone:

cd your-project
npm install --save vuex-bitshares

Dev:

cd your-project
git submodule add git@github.com:TrustyFund/vuex-bitshares.git
npm install --save file:vuex-bitshares

Then while initiating store:

import Vue from 'vue';
import Vuex from 'vuex';
import vuexBitshares from 'vuex-bitshares';
...

Vue.use(Vuex);
const store = new Vuex.Store({...}) // Your modules
vuexBitshares(store);
export default store;