Render
Class
The WireBootstrap SSRS Component extends the wire.ui.component class. As such, it inherits all the base functionality of that class.
To create a new instance of the component, use the wire.ssrsViewerclass.
const report = new wire.ssrsViewer();Render
Render the component using an HTML div element.
<div id="report"></div>
<script>
new wire.ssrsViewer().render("#report", {});
</script><WireComponent component="wire.ssrsViewer" config={}>
<div></div>
</WireComponent><div wire-component="wire.ssrsViewer" v-wire-config=""></div><div wire-component="wire.ssrsViewer" [config]=""></div>Last updated