Last updated 3 years ago
The WireBootstrap SSRS Component extends the class. As such, it inherits all the base functionality of that class.
To create a new instance of the component, use the wire.ssrsViewerclass.
wire.ssrsViewer
const report = new wire.ssrsViewer();
Render the component using an HTML div element.
div
<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>