alien-button
v0.0.3
Published
<img src="https://raw.githubusercontent.com/boscan-alexandru/alien-button/main/alien-button.png?token=GHSAT0AAAAAACN3DZKW7C5ERWDD2WKBP2IGZOB2QVA" width="640" height="320" />
Readme
Alien Button
The only button you will need to create stunning interfaces that are also stable and standardized all over you application.
Additional Info
- This is a Vue.js package. built on Vue.js version 3
- Access the api for this package on official package website
Setup
It's a very simple package with very easy setup
pnpm add alien-buttonUsage
In your vue js app, in any component do just:
<script setup lang="ts">
import { AlienButton } from "alien-button";
import "alien-button/style.css";
</script>
<template>
<AlienButton text="👽 Make the Alien fly away" />
</template>