
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Vuetage is a library of custom Vue components designed to simplify and enhance your web development experience.
You can install the Vuetage library using your prefer package manager.
bun i -D vuetage
After installing the Vuetage library, you can import the components you need in your Vue project.
import { BaseButton, BaseSelect, BaseTextField } from 'vuetage'
Make sure to include the component's markup in your Vue template:
<template>
<form @submit.prevent style="width: 240px; margin: 2em auto;">
<BaseTextField
label="Name"
placeholder="Enter your name"
v-model="name"
/>
<BaseTextField
label="Email"
placeholder="Enter your email"
v-model="email"
/>
<BaseSelect
label="Country"
:options="countries"
v-model="country"
/>
<BaseButton
rightIcon="fa fa-rocket"
size="small"
:disabled="isDisabled"
:loading="isLoading"
@click="submit"
>
Submit form
</BaseButton>
</form>
</template>
NOTE
There are a lot of props to modify the styles of component, this is just a default, you can edit the colors, size, effects, and add custom styles as you need.
The Result of this code will be:

If you want to see it in action, you can check it on storybook.
For a more comprehensive understanding of each component's capabilities and usage, consult the documentation.
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions from the community are highly valued. Please review our CONTRIBUTION for more information.
FAQs
<img src="https://badgen.net/npm/dw/vuetage
We found that vuetage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.