tooltip doc updated

pull/1408/head
Tuğçe Küçükoğlu 2021-08-04 12:17:29 +03:00
parent 6e119d9ac2
commit f3145c1fac
1 changed files with 34 additions and 0 deletions

View File

@ -21,6 +21,12 @@ directives: {
<pre v-code><code><template v-pre> <pre v-code><code><template v-pre>
&lt;InputText type="text" v-tooltip="'Enter your username'" /&gt; &lt;InputText type="text" v-tooltip="'Enter your username'" /&gt;
</template> </template>
</code></pre>
<p>Also, more than one value can be used.</p>
<pre v-code><code><template v-pre>
&lt;InputText type="text" v-tooltip="{ value: 'Enter your username', disabled: true }" /&gt;
</template>
</code></pre> </code></pre>
<h5>Positions</h5> <h5>Positions</h5>
@ -49,6 +55,34 @@ directives: {
</template> </template>
</code></pre> </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> <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> <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"> <div class="doc-tablewrapper">