[Vuejs]-Call a plugin function inside a page function doesn't works

0👍

Did you register your plugin into the nuxt.config.js file?

export default {
  ...
  plugins: [
    '~/plugins/helpers.js'
  ]
}

https://nuxtjs.org/guide/plugins

Leave a comment