https://github.com/TrustyFund/vuex-bitshares
https://github.com/TrustyFund/vuex-bitshares
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/TrustyFund/vuex-bitshares
- Owner: TrustyFund
- License: mit
- Created: 2018-01-19T09:33:05.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-26T12:23:14.000Z (about 7 years ago)
- Last Synced: 2025-04-19T12:31:09.775Z (7 months ago)
- Language: JavaScript
- Size: 2.05 MB
- Stars: 5
- Watchers: 3
- Forks: 12
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bitshares - vuex-bitshares - used by Trusty/Community UI. (Libraries / JavaScript Libraries)
README
[](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 git@github.com: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;
```