Render
Class
The WireBootstrap for Power BI Tile 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.pbiTile class.
const tile = new wire.pbiTile();Render
Render the component using an HTML div element.
<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>Last updated