0.0.1 • Published 6 years ago

vue-highstock v0.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

vue-highstock

highstock (or highcharts) component for vue2

Install

npm install vue-highstock

Usage in Vue component

<high-stock :options="options" :key="options.title.text"></high-stock>
import highstock from 'highcharts/highstock'
import vueHightstock from 'vue-highstock'

export default {
  components: {
    highStock: vueHightstock(highstock, {
      // highstock global options here
    })
  }
}