diff --git a/src/components/mdRatingBar/mdRatingBar.vue b/src/components/mdRatingBar/mdRatingBar.vue
index 36781f3..4ccf866 100644
--- a/src/components/mdRatingBar/mdRatingBar.vue
+++ b/src/components/mdRatingBar/mdRatingBar.vue
@@ -4,13 +4,13 @@
star
+ @mouseout.native="onMouseOut">{{ backIcon }}
star
+ @mouseout.native="onMouseOut">{{ frontIcon }}
@@ -35,6 +35,14 @@
return value >= 0 && value <= 1;
},
default: 0
+ },
+ frontIcon: {
+ type: String,
+ default: 'star'
+ },
+ backIcon: {
+ type: String,
+ default: 'star'
}
},
mixins: [theme],