vue3-star-ratings

# Basic

If you want to use the package with a CDN, you need to include the CDN link inside a <script> tag and then insert this tag into your HTML file:

Next, you need to register the component.

After completing the steps to include the component in your project, you will be able to use it immediately. Here is an example of how to use it:

# Module System

To install the Vue3-star-ratings package in your Vue.js project, you can use the following command:

This will download and install the package and save it to your package.json file as a dependency.

Global Registration

Once the package is installed, you can register it globally in your Vue.js application by importing it and registering it as a component globally

After registering the component globally, you can use it in any component template in your application by referencing it with its tag name.

Local Registration

Alternatively, you can register the component locally in a specific component by importing it and defining it in the components components property of the component definition object.

After registering the component locally, you can use it in the template of that component by referencing it with its tag name.