我正在渲染vuex商店的图表。以前当我的数据发生变化时,图表将自动更新,现在我看到商店中的值发生了变化,但图表没有更新。我不确定如何在图表上调用更新。
<template>
<swiper :options="swiperOption">
<swiper-slide v-for="(photon,key) in this.$store.state.photons"
:key='key'>
<line-chart :library="chartOptions" v-if="photon.SF.showCharts":data="photon.SF.rbChannelOverlay"></line-chart>
</swiper-slide>
</swiper>
</template>