0.1.3 • Published 10 months ago

vue-styles-button v0.1.3

Weekly downloads
-
License
-
Repository
-
Last release
10 months ago

vue-styles-button

vue3按钮组件的各种样式

安装

npm i vue-styles-button

使用

<script setup lang="ts">
import { Button } from "vue3-vue-styles-button";
</script>

<template>
  <Button class="button">普通</Button>
  <Button class="button" rounded>普通圆角</Button>
  <Button class="button" type="gradient">渐变</Button>
  <Button class="button" type="gradientText" rounded>文字渐变</Button>
  <Button class="button" disable>禁用</Button>
</template>

<style scoped lang="scss">
.button {
  width: 240px;
  height: 50px;
  margin-bottom: 16px;
}
</style>
0.1.3

10 months ago

0.1.2

10 months ago

0.1.1

10 months ago

0.1.0

10 months ago