我想让我的代码更短。我有图表js,它使用datacollection
来设置图表的选项。我想在我的页面上使用它时在另一个组件中呈现它。
我希望能够根据我想要的图表,从组件渲染中设置Det数据收集。
在我组件中有这样的内容:
<template>
<div>
<chart :datacollection="this_will_i_define_on_the_page_i_render_this_component"> </chart>
</div>
<template>
<script>
export {
name: 'this-chart',
data () {
return {
DC1: []
DC2: []
}
}
}
(basic vue component)
</script>
<template>
<this-chart :datacollection="DC1"> </this-chart>
<this-chart :datacollection="DC2"> </this-chart>
</template>
我希望能够在组件中设置datacollection
,我该怎么做呢?
先谢谢你。
2条答案
按热度按时间yacmzcpb1#
然后根据你的评论,你可以这样做。可能更优雅的方式,但应该工作。
然后使用
bqucvtff2#
我想你在找component props。
而要使用它
请下次更好地设置代码格式。