我想在我的vue js项目中使用c3图表,所以我下载了这个包
https://github.com/chryb/vue-c3
首先,我在主组件中创建处理程序属性时遇到问题,因为示例显示我们需要使用 new Vue()值创建此属性:handler: new Vue()
和Vue返回错误:未定义Vue。
其次我不明白为什么示例会显示如下事件:this.handler.$emit('init', options)
。不应该像this.$emit('init', options)
那样,因为示例会返回错误吗?
有人可以解释如何正确使用这个vue-c3包吗?
这是我的代码:
主要内容:
<template>
<div>
<vue-chart @myEvent="init" :handler="handler"></vue-chart>
</div>
</template>
<script>
import VueChart from '@/components/VueChart'
export default {
name: 'HelloWorld',
data () {
return {
handler: {}
}
},
components: { VueChart }
}
</script>
图表组件:
<template>
<div>
Content
</div>
</template>
<script>
export default {
name: 'VueChart',
props: ['handler'],
mounted () {
const options = {
data: {
columns: [
['data1', 2, 4, 5],
['data2', 1, 8, 9]
]
}
}
this.$emit('init', options)
}
}
</script>
答案 0 :(得分:0)
显然太晚了,无法对OP有用,但是无论如何:
import Vue from 'vue'
在您写入new Vue()
的文件中