Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TrustyFund/vuex-bitshares
https://github.com/TrustyFund/vuex-bitshares
Last synced: about 2 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 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-26T12:23:14.000Z (about 6 years ago)
- Last Synced: 2024-10-12T17:39:22.438Z (3 months ago)
- Language: JavaScript
- Size: 2.05 MB
- Stars: 5
- Watchers: 4
- 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
[![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;
```