[Vuejs]-Understanding context and app methods in NUXT

0๐Ÿ‘

โœ…

If you are injecting into context inside one plugin and want to use that function inside another, you need to make sure that the plugin in which you are injecting comes first inside nuxt.config.js

...
plugins: [
  '~/plugins/bugsnag.js',
  '~/plugins/axios.js'
],
...

Leave a comment