tooltip doc updated
parent
6e119d9ac2
commit
f3145c1fac
|
@ -21,6 +21,12 @@ directives: {
|
|||
<pre v-code><code><template v-pre>
|
||||
<InputText type="text" v-tooltip="'Enter your username'" />
|
||||
</template>
|
||||
</code></pre>
|
||||
|
||||
<p>Also, more than one value can be used.</p>
|
||||
<pre v-code><code><template v-pre>
|
||||
<InputText type="text" v-tooltip="{ value: 'Enter your username', disabled: true }" />
|
||||
</template>
|
||||
</code></pre>
|
||||
|
||||
<h5>Positions</h5>
|
||||
|
@ -49,6 +55,34 @@ directives: {
|
|||
</template>
|
||||
</code></pre>
|
||||
|
||||
<h5>Properties</h5>
|
||||
<div class="doc-tablewrapper">
|
||||
<table class="doc-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Type</th>
|
||||
<th>Default</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>value</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>Text of the tooltip</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>disabled</td>
|
||||
<td>boolean</td>
|
||||
<td>false</td>
|
||||
<td>When present, it specifies that the component should be disabled.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h5>Styling</h5>
|
||||
<p>Following is the list of structural style classes, for theming classes visit <router-link to="/theming">theming</router-link> page.</p>
|
||||
<div class="doc-tablewrapper">
|
||||
|
|
Loading…
Reference in New Issue