Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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 1,317 weekly downloads. As such, vue3-star-ratings popularity was classified as popular.
We found that vue3-star-ratings demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.