Links
Comment on page

Web Frameworks

Any WireBootstrap component can be used natively inside any of the modern web frameworks through integrations developed for each framework. Click on a framework below to go to the WireBootstrap integration documentation for the framework.
Angular
React
Vue
In the example below, the component myComponent is rendered in plain JavaScript as well as four web frameworks.
JavaScript
Web Components
Angular
React
Vue
<div id="component1"></div>
<script>
new myComponent().render("#component1", {});
</script>
<wire-component component="myComponent" config=""></wire-component>
<div wire-component="myComponent" [config]=""></div>
<WireComponent component="myComponent" config={}>
<div></div>
</WireComponent>
<div wire-component="myComponent" v-wire-config=""></div>