pull/1196/head^2
Tuğçe Küçükoğlu 2021-05-05 17:34:45 +03:00
parent 66208bd32a
commit 1dde1db21b
4 changed files with 5 additions and 5 deletions

View File

@ -96,7 +96,7 @@ import Divider from 'primevue/divider';
</tr>
<tr>
<td>type</td>
<td>String</td>
<td>string</td>
<td>solid</td>
<td>Border style type, default is "solid" and other options are "dashed" and "dotted".</td>
</tr>

View File

@ -16,11 +16,11 @@ app.use(PrimeVue, {ripple: true});
<p><span class="p-text-bold">Note</span>: That would be it to enable ripple on PrimeVue components, next section describes how to use it with your own components and standard elements.</p>
<h5>Directive</h5>
<p>Ripple is a directive that needs to be imported and configured with a name of your choice. Global configuration is done with the <i>Vue.directive</i> function.</p>
<p>Ripple is a directive that needs to be imported and configured with a name of your choice. Global configuration is done with the <i>app.directive</i> function.</p>
<pre v-code.script><code>
import Ripple from 'primevue/ripple';
Vue.directive('ripple', Ripple);
app.directive('ripple', Ripple);
</code></pre>

View File

@ -137,7 +137,7 @@ export default {
</tr>
<tr>
<td>slideEnd</td>
<td>event.originalEvent: Slide event <br />
<td>event.originalEvent: Original event <br />
event.value: New value.
</td>
<td>Callback to invoke when slide ends.</td>

View File

@ -134,7 +134,7 @@ export default {
<td>align</td>
<td>string</td>
<td>left</td>
<td>Position of the timeline bar relative to the content. Valid values are "left", "right for vertical layout and "top", "bottom" for horizontal layout.</td>
<td>Position of the timeline bar relative to the content. Valid values are "left", "right" for vertical layout and "top", "bottom" for horizontal layout.</td>
</tr>
<tr>
<td>layout</td>