Bug
如图
Solution
出现这个错误的原因是这段代码中:
const options = {
bubbles: true,
composed: true
}
(this.properties.showRightText || this.properties.showRightIcon) && this.triggerEvent('onRightClicked', {}, options)
定义options变量时忘了加分号,导致其与后面的括号一起引起了编译器的误解(以为是立即执行函数)。加上就好了。