Builder.io drag and drop page and section building for Vue.
Builder.io drag and drop page and section building for Vue.
NOTE: If you are looking for the _beta_ 2.0 Vue SDK, you can find it here
``bash`
npm install @builder.io/vue
`vue
`
Take a look at this in practice in an example you can run with our Nuxt example
The RenderComponent component also takes additional options and emits events when content loads or errors
`vue
@contentLoaded="contentLoaded"
@contentError="contentError"
:options="{
// optional - define the URL to pull content for
// in browseres this is grabbed automatically from location.href for pages
// and content targeted to specific URLs
url: $route.path,
// optional - filter content on custom fields
query: {
data: {
myCustomField: 'myCustomValue',
},
},
}"
/>
``