enum BaseEvent { CLICK = 'click' } interface CustomEvent{ [BaseEvent.CLICK]:string } defineEmits<EmitEvents>()
上面这种写法 @vue/compiler-sfc 会报 Unsupported computed key in type referenced by a macro ,应该怎么写才对?谢谢。