vue中数据标签不显示echarts 柱状配置项内容和展示

用itemStyle显示数据标签,为什么在vue中同样的写法,图形都展示不出来了?或者有其它的方法吗?在VUE中。

配置项如下
      option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    yAxis: {},
    series: [{
        type: 'bar',
        data: [220, 182, 191, 234, 290, 330, 310],
        itemStyle: {
            normal: {
                label: {
                    show: true, //开启显示
                    position: 'top'
                }
            }
        }
    }]
};
    
截图如下