Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/TrustyFund/vuex-bitshares


https://github.com/TrustyFund/vuex-bitshares

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/TrustyFund/vuex-bitshares.svg?branch=master)](https://travis-ci.org/TrustyFund/vuex-bitshares)

## Installation

Standalone:
```sh
cd your-project
npm install --save vuex-bitshares
```

Dev:
```sh
cd your-project
git submodule add [email protected]:TrustyFund/vuex-bitshares.git
npm install --save file:vuex-bitshares
```

Then while initiating store:
```js
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;
```