We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In https://v2.baklava.tech/visual-editor/customization.html they have this example code:
<template> <Editor> <template #node="nodeProps"> <MyNodeRenderer v-if="nodeProps.node.type === 'MyNodeType'" :key="nodeProps.node.id" v-bind="nodeProps" /> <BaklavaNode v-else :key="nodeProps.node.id" v-bind="nodeProps" /> </template> </Editor> </template> <script setup> import { Editor, Components } from "@baklavajs/renderer-vue"; const BaklavaNode = Components.Node; // example, replace with your component: import MyNodeRenderer from "./MyNodeRenderer.vue"; </script>
But there's no Editor class in "@baklavajs/renderer-vue
Editor
"@baklavajs/renderer-vue
The text was updated successfully, but these errors were encountered:
Fix code example (#391), formatting
656c9aa
No branches or pull requests
In https://v2.baklava.tech/visual-editor/customization.html they have this example code:
But there's no
Editor
class in"@baklavajs/renderer-vue
The text was updated successfully, but these errors were encountered: