New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

vuetage

Package Overview
Dependencies
Maintainers
0
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vuetage

<img src="https://badgen.net/npm/dw/vuetage

latest
Source
npmnpm
Version
0.0.80
Version published
Maintainers
0
Created
Source

vuetage


Vuetage is a library of custom Vue components designed to simplify and enhance your web development experience.

Installation

You can install the Vuetage library using your prefer package manager.

Bun

bun i -D vuetage

Usage

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:

Imgur

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.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions from the community are highly valued. Please review our CONTRIBUTION for more information.

Keywords

vue

FAQs

Package last updated on 20 Jun 2024

Did you know?

Socket

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.

Install

Related posts