Skip to content

donmbelembe/vue2-d3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue2-d3

A Vue.js plugin for D3.js.

Installation

npm:

npm install --save vue2-d3

Vue:

import Vue from 'vue'
import VueD3 from 'vue2-d3'
Vue.use(VueD3)

HTML (Browserify):

<body>
  ...
  <!-- Bottom of body -->
  <script src="/path/to/vue.js"</script>
  <script src="/node_modules/vue2-d3/src/vue-d3.js'"></script>
</body>

Usage

D3 is now available through this.$d3

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