I'm having this weird error with Vetur in a typescript nuxt.js application. It shows this error message on the first line of all the components whether it's an empty line or has the tag.
I'm not sure when this error started to appear or what does it even mean?
Any help will be appreciated, thanks a lot!
So it turned out that this was because of Vetur experimental templateInterpolationService
property. By turning it to false
in the vetur.config.js
file:
module.exports = {
settings: {
/* .. */
'vetur.experimental.templateInterpolationService': false
/* .. */
}
};
Vetur stopped the unexpected interference with my components.