typescript编译失败,如何将对象绑定到this上?
场景:使用了typescript编写整个项目,page引入组件 ,component中使用了video组件,点击页面中某个button调用this.videoContext.play()
期望:this.videoContext = wx.createVideoContext('mvideo'),能将videoContext绑定在this上
结果:报错:Property 'videoContext' does not exist on type 'Instance<{ sliderValue: number; videoContext: {}; }, {}, { sliderChange(): void; handlePlay(): void; }>'
请问如何将这个对象绑定到this上呢 (放到data中也会有问题)
谢谢