是否有任何选项,如何设置ApexChart参数动态通过属性或其他任何东西?我想为ApexCharts做一个 Package 器。第一个参数应该是图表类型,我寻找一种方法,如何在Vue.js中创建一个新组件期间设置此参数
<apexchart type="{{type}}"
height="{{height}}"
ref="centerProjectTreemap"
:options="chartOptions"
:series="series"
></apexchart>
</div>
</template>
<script>
export default {
name: "param-chart",
props: {
type: String,
height: Number
}
//.......
</script>
<param-chart type="bar" height="350"/> //this is in the main
1条答案
按热度按时间o8x7eapl1#
prop 的绑定和其他属性的绑定是一样的,你可以像