0👍
✅
You can add v-if
directive to charts. So your chats will be like:
<main-chart-example
v-if="this.selected === 'Month'"
id='Month'
chartId="main-chart-01"
class="chart-wrapper Month"
style="height:300px;margin-top:40px;"
height="300">
</main-chart-example>
<main-chart-example2
v-if="this.selected === 'Year'"
id='Year'
chartId="main-chart-02"
class="chart-wrapper Year"
style="height:300px;margin-top:40px;"
height="300">
</main-chart-example2>
Source:stackexchange.com