I've installed vue-tour component.
https://www.npmjs.com/package/vue-tour
In vue component in mounted method I have (code in typescript):
mounted() {
this.$tours['tourTabsNames'].start();
And when I compile above code I get error:
Error TS2339 (TS) Property '$tours' does not exist on type 'CombinedVueInstance
But when I remove $tours from code and run application and stop on debug mode (F12 in browser) I can call this.$tours['tourTabsNames'].start();
and it works. How to suppress error message in typescript while compiling code?
Vue.use(VueTour)
? – PatrickSteele