[Vuejs]-Vetur template interpolation: How can I setup global virtual method for template by JsDoc? Without typescript

0👍

You need to add it to tsconfig (if you are using nuxt):

{
  "compilerOptions": {
    "types": ["@nuxt/types", "nuxt-i18n"]
  }
}

Leave a comment