uiloosPlugin
PLUGIN
The uiloos Vue plugin, add it to vue via app.use();
Since 1.0.0
Example
Shows how to install the uiloosPlugin in your Vue app.
Note: If you plan on using the ActiveList component
the vue configuration called "runtimeCompiler" must
be set to "true" since it uses templates.
import { createApp } from "vue";
import { uiloosPlugin } from "@uiloos/vue";
import App from "./App.vue";
const app = createApp(App);
app.use(uiloosPlugin);
app.mount("#app");