[Vuejs]-How can I write parameters into ApexChart in Vue.js via props?

0👍

The props binding is the same as other attributes binding, you can do like

<apexchart :type="type"
           :height="height"
           ref="centerProjectTreemap"
           :options="chartOptions"
           :series="series"
 ></apexchart>

Leave a comment