
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
vue3-star-ratings
Advanced tools
A simple, customizable component for star ratings
You can try out the demo here: https://vue3-star-ratings.netlify.app/demo
npm install vue3-star-ratings --save
You can use register it globally like this:
import { createApp } from "vue";
import App from "./App.vue";
import vue3StarRatings from "vue3-star-ratings";
const app = createApp(App);
app.component("vue3-star-ratings", vue3StarRatings);
then use it this in your component:
<vue3-star-ratings />
Alternatively, you can use it directly:
<!-- your-component.vue -->
<template>
<vue3-star-ratings v-model="rating" />
</template>
<script>
import { defineComponent } from "vue";
import vue3starRatings from "vue3-star-ratings";
export default defineComponent({
components: {
vue3starRatings,
},
});
</script>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue3-star-ratings"></script>
const { createApp } = Vue;
const App = {
//Component code...
};
const app = createApp(App);
app.component("vue3StarRatings", Vue3StarRatings);
app.mount("#app");
The v-model
directive syncs the rating value between the Vue3StarRatings component and its parent:
<vue3-star-ratings v-model="rating"/>
.
Prop | Description | Type | Default |
---|---|---|---|
numberOfStars | Specifies the total number of stars displayed and the maximum rating | Number | 5 |
starSize | Sets the height and width of each star, in pixels | Number | 32 |
starColor | Defines the color of active stars | String | #ff9800 |
inactiveColor | Sets the color of inactive stars | String | #333333 |
disableClick | Allows you to disable the click event on the stars | Boolean | false |
v-model | Syncs the rating value between the component and its parent component | ||
customSvg | Provides an option for using a custom SVG icon for the star rating | Component | Built-in |
Customize the component by leveraging these props to meet your specific needs.
FAQs
A simple, customizable vue3 component for star ratings
The npm package vue3-star-ratings receives a total of 973 weekly downloads. As such, vue3-star-ratings popularity was classified as not popular.
We found that vue3-star-ratings demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.