[Vuejs]-Vue3 defineProps value is not passed to the child

1👍

First of all, your "series" key of "seriesData" is trying to access props.name, that does not exist.

Try using computed instead of reactive for seriesData creation.

let seriesData = computed({ ... })
👤Vasyl

0👍

I changed this to options api and solved it.
highcharts-vue does not support composition api.

Leave a comment