๐ง Install
you need to install vue-flow to make this package work.
yarn add @vue-flow/background @vue-flow/core @vue-flow/controls @vue-flow/minimap @vue-flow/node-toolbar @vue-flow/node-resizer
Now you need to build your assets
yarn build
add this line to your app.js
import TomatoDiagram from "../../vendor/tomatophp/tomato-builder/resources/js/components/TomatoDiagram.vue";
createApp({
render: renderSpladeApp({ el })
})
.use(SpladePlugin, {
max_keep_alive: 10,
transform_anchors: false,
progress_bar: true,
})
.component("TomatoDiagram", TomatoDiagram)
...
.mount(el);
Last updated
Was this helpful?