Qlik
Docs HomeProduct SiteSupport
  • WireBootstrap for Qlik
  • Installation
  • Qlik Component
    • Render
    • Configuration
Powered by GitBook
On this page
  • Class
  • Render
  1. Qlik Component

Render

PreviousQlik ComponentNextConfiguration

Last updated 3 years ago

Class

The WireBootstrap Qlik 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.qlikComponent class.

const qlik = new wire.qlikComponent();

Render

Render the component using an HTML div element.

<div id="qlik"></div>
<script>
    new wire.qlikComponent().render("#qlik", {});
</script>
<WireComponent component="wire.qlikComponent" config={}>
    <div></div>
</WireComponent>
<div wire-component="wire.qlikComponent" v-wire-config=""></div>
<div wire-component="wire.qlikComponent" [config]=""></div>
wire.ui.component