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"]
  }
}

Related questions

0 votes
asked Sep 9, 2023 in VueJS by DavidAnderson
0 votes
asked Sep 12, 2023 in VueJS by AdilsonLima
...