0 votes
in VueJS by
How do you create UI plugins kind of behavior?

1 Answer

0 votes
by

You can also add files that will behave like UI plugins with the vuePlugins.ui option

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