Last updated 3 years ago
The WireBootstrap for Power BI Tile 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.pbiTile class.
wire.pbiTile
const tile = new wire.pbiTile();
Render the component using an HTML div element.
div
<div id="tile"></div> <script> new wire.pbiTile().render("#tile", {}); </script>
<WireComponent component="wire.pbiTile" config={}> <div></div> </WireComponent>
<div wire-component="wire.pbiTile" v-wire-config=""></div>
<div wire-component="wire.pbiTile" [config]=""></div>