0 votes
in VueJS by
How to access local plugins in a project?

1 Answer

0 votes
by

If you need access to the plugin API in your project without creating a full plugin, you can use the vuePlugins.service option in your package.json file

{
  "vuePlugins": {
    "service": ["my-service.js"]
  }
}
...