A Component Library for Vue3.js. Doc address: https://lew.kamtao.com
npm install lew-ui --save
引入 css
// main.ts
import 'lew-ui/dist/style.css';
页面
<script setup lang="ts">
import { LewButton } from 'lew-ui';
</script>
<template>
<lew-button> 发送 </lew-button>
</template>