Skip to content

Rate

Used for quick rating operations or displaying ratings.

Basic Usage

Set v-model for the score and num for the total score, default is 5 points.

html
<wd-rate v-model="value" @change="handleChange" />
typescript
const value = ref<number>(1)

function changeValue({ value }) {
  console.log(value)
}

Read-only

Set the readonly property.

html
<wd-rate v-model="value" readonly />

Disabled

Set the disabled property and disabled-color.

html
<wd-rate :modelValue="2" disabled />

Modify Color

You can modify the unselected color through the color property and the selected color through active-color.

html
<wd-rate v-model="value" active-color="linear-gradient(180deg, rgba(255,238,0,1) 0%,rgba(250,176,21,1) 100%)" />
<wd-rate v-model="value" :active-color="['linear-gradient(180deg, rgba(255,238,0,1) 0%,rgba(250,176,21,1) 100%)', 'linear-gradient(315deg, rgba(245,34,34,1) 0%,rgba(255,117,102,1) 100%)']" />

Modify Icon

You can modify the unselected icon through the icon property and the selected icon through active-icon.

html
<wd-rate v-model="value" icon="wd-icon-dong" active-icon="wd-icon-dong" active-color="#4D80F0"/>

Modify Size and Spacing

You can modify the icon size through the size property and the spacing between icons through space.

html
<wd-rate v-model="value" size="30px" space="10px"/>

Allow Half Selection

Set the allowHalf property.

html
<wd-rate v-model="value" allow-half />

Attributes

ParameterDescriptionTypeOptionsDefaultVersion
v-modelCurrent scorenumber---
numMaximum rating valuenumber-5-
readonlyWhether it's read-onlyboolean-false-
sizeIcon sizestring-16px-
spaceIcon spacingstring-4px-
colorUnselected icon colorstring-#E8E8E8-
active-colorSelected icon color (supports color array with 2 elements for 2 segments)string/array-linear-gradient(180deg, rgba(255,238,0,1) 0%,rgba(250,176,21,1) 100%)-
iconUnselected icon class namestring-wd-icon-star-on-
active-iconSelected icon class namestring-wd-icon-star-on-
disabledWhether it's disabledboolean-false-
disabled-colorDisabled icon colorstring-linear-gradient(315deg, rgba(177,177,177,1) 0%,rgba(199,199,199,1) 100%)-
allow-halfWhether to allow half selectionboolean-false1.7.0

Events

Event NameDescriptionParametersVersion
changeTriggered when clicking icon to modify score{ value }-

External Classes

Class NameDescriptionVersion
custom-classRoot node style-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.