Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jaredreich/vue-d3

a vue.js plugin for D3
https://github.com/jaredreich/vue-d3

d3 plugin vue vue-d3 vue-plugin vuejs

Last synced: about 23 hours ago
JSON representation

a vue.js plugin for D3

Awesome Lists containing this project

README

        

# vue-d3

A Vue.js plugin for [D3](https://github.com/d3/d3).

## Installation

npm:
``` bash
npm install --save vue-d3
```

Vue:
```javascript
var Vue = require('vue')
var VueD3 = require('vue-d3')
Vue.use(VueD3)
```

HTML (Browserify):
```html

...


<script src="/node_modules/vue-d3/src/vue-d3.js'">

```

## Usage
D3 is now available through ```this.$d3```

```javascript
this.$d3.selectAll('p').style('color', 'white');
```