Configurable bpmnjs vue components
npm install avue-bpmn``bash`
npm i avue-bpmnor
yarn add avue-bpmn
`ts
import { createApp } from "vue";
import App from "./App.vue";
import AvueBpmn from "avue-bpmn";
import "avue-bpmn/dist/index.css";
const app = createApp(App);
app.use(AvueBpmn);
app.mount("#app");
`
`html`
Add the global component type definition for Volar
`json``
// tsconfig.json
{
"compilerOptions": {
// ...
"types": ["avue-bpmn/global"]
}
}