Hi, I’m trying to embed builder pages to Vue3 project like so →
<template>
<RenderContent
model="categories"
/>
</template>
<script>
import { RenderContent } from '@builder.io/vue'
export default {
components: { RenderContent }
}
</script>
Builder init in my App.ts file.
With no success, this error always appears.
And for some reason in Vue2 my custom javascript from pages doesn’t work, hence no data loading and no logs in console.
Is it better to use React for builder?