@anshengxy/as-ui
v1.14.1
Published
vue3 typescript 组件库
Downloads
329
Maintainers
Readme
官方文档
安装依赖
pnpm install @anshengxy/as-ui
项目引入示列
// main.ts
import AsUi from '@anshengxy/as-ui'
import '@anshengxy/as-ui/dist/index.css'
const app = createApp(App)
app.use(AsUi)
开发示列
<template>
<as-button>按钮</as-button>
</template>
<script lang="ts" setup>
import { useShowDialog, AsButton, AsMessageBox } from 'as-ui'
</script>