Skip to content

Rate

Used for rating

Basic usage

Rate divides rating scores into several levels and these levels can be distinguished by using different background colors. By default background colors are the same, but you can assign them an array with three element to reflect three levels using the colors attribute, and their two thresholds can be defined by low-threshold and high-threshold, or you can assign them with a object which key is the threshold between two levels and value is the corresponding color.

default color insensitive

distinguish colors

Sizes

Besides default size, tu-rate component provides three additional sizes for you to choose among different scenarios. Use attribute size to set additional sizes with mini, small, large.

mini

small

medium

large

With allow-half

Add attribute allow-half Half star allowed

With text

Using text to indicate rating scoreAdd attribute show-text to display text at the right of Rate. You can assign texts for different scores using texts. texts is an array whose length should be equal to the max score max.

Clearable

You can reset the value to 0 when you click at the same value again.

More icons

You can use different icons to distinguish different rate components.You can customize icons by passing icons an array with three elements or a object which key is the threshold between two levels and value is the corresponding icon. In this example, we also use void-icon to set the icon if it is unselected.

Read-only

Read-only Rate is for displaying rating score. Half star is supported.Use attribute disabled to make the component read-only. Add show-score to display the rating score at the right side. Additionally, you can use attribute score-template to provide a score template. It must contain {value}, and {value} will be replaced with the rating score.

3.7 points

Custom styles

You can set custom style for rate component. Use css/scss language to change the global or local color. We set some global color variables: --rate-void-color, --rate-fill-color, --rate-disabled-void-color, --rate-text-color. You can use like: :root { --rate-void-color: red; --rate-fill-color: blue; }.

Rate API

Rate Attributes

NameDescriptionTypeDefault
model-value / v-modelBinding valueNumber0
maxMax rating scoreNumber5
sizeSize of RateStringmedium
disabledWhether Rate is read-onlyBooleanfalse
allow-halfWhether picking half start is allowedBooleanfalse
low-thresholdThreshold value between low and medium level. The value itself will be included in low levelNumber2
high-thresholdThreshold value between medium and high level. The value itself will be included in high levelNumber4
colorsColors for icons. If array, it should have 3 elements, each of which corresponds with a score level, else if object, the key should be threshold value between two levels, and the value should be corresponding colorObject['#F7BA2A', '#F7BA2A', '#F7BA2A']
void-colorColor of unselected iconsString#C6D1DE
disabled-void-colorColor of unselected read-only iconsString#F0F2F5
iconsIcon components. If array, it should have 3 elements, each of which corresponds with a score level, else if object, the key should be threshold value between two levels, and the value should be corresponding icon componentObject[StarFilled, StarFilled, StarFilled]
void-iconComponent of unselected iconsString ComponentStar
disabled-void-iconComponent of unselected read-only iconsString ComponentStarFilled
show-textWhether to display textsBooleanfalse
show-scoreWhether to display current score. show-score and show-text cannot be true at the same timeBooleanfalse
text-colorColor of textsString-
textsText arrayArray['Extremely bad', 'Disappointed', 'Fair', 'Satisfied', 'Surprise']
score-templateScore templateString-
clearableWhether value can be reset to 0Booleanfalse
idNative id attributeString-
labelSame as aria-label in RateString-

Rate Events

NameDescriptionType
changeTriggers when rate value is changedFunction

Rate Exposes

NameDescriptionType
setCurrentValueSet current valueFunction
resetCurrentValueReset current valueFunction