diff --git a/src/views/divider/DividerDoc.vue b/src/views/divider/DividerDoc.vue
index c14604bca..29e1476bb 100644
--- a/src/views/divider/DividerDoc.vue
+++ b/src/views/divider/DividerDoc.vue
@@ -96,7 +96,7 @@ import Divider from 'primevue/divider';
type |
- String |
+ string |
solid |
Border style type, default is "solid" and other options are "dashed" and "dotted". |
diff --git a/src/views/ripple/RippleDoc.vue b/src/views/ripple/RippleDoc.vue
index 6307920a5..b9335dc82 100644
--- a/src/views/ripple/RippleDoc.vue
+++ b/src/views/ripple/RippleDoc.vue
@@ -16,11 +16,11 @@ app.use(PrimeVue, {ripple: true});
Note: That would be it to enable ripple on PrimeVue components, next section describes how to use it with your own components and standard elements.
Directive
- Ripple is a directive that needs to be imported and configured with a name of your choice. Global configuration is done with the Vue.directive function.
+ Ripple is a directive that needs to be imported and configured with a name of your choice. Global configuration is done with the app.directive function.
import Ripple from 'primevue/ripple';
-Vue.directive('ripple', Ripple);
+app.directive('ripple', Ripple);
diff --git a/src/views/slider/SliderDoc.vue b/src/views/slider/SliderDoc.vue
index 0e9a39fea..82831c0c2 100755
--- a/src/views/slider/SliderDoc.vue
+++ b/src/views/slider/SliderDoc.vue
@@ -137,7 +137,7 @@ export default {
slideEnd |
- event.originalEvent: Slide event
+ | event.originalEvent: Original event
event.value: New value.
|
Callback to invoke when slide ends. |
diff --git a/src/views/timeline/TimelineDoc.vue b/src/views/timeline/TimelineDoc.vue
index bda77c897..9b723ba56 100644
--- a/src/views/timeline/TimelineDoc.vue
+++ b/src/views/timeline/TimelineDoc.vue
@@ -134,7 +134,7 @@ export default {
align |
string |
left |
- Position of the timeline bar relative to the content. Valid values are "left", "right for vertical layout and "top", "bottom" for horizontal layout. |
+ Position of the timeline bar relative to the content. Valid values are "left", "right" for vertical layout and "top", "bottom" for horizontal layout. |
layout |