0.1.0 • Published 10 months ago
st-common-ui-vue3 v0.1.0
小尾巴前端通用 Vue3 UI 组件库
安装
npm
npm install st-common-ui-vue3
yarn
yarn add st-common-ui-vue3
pnpm
pnpm install st-common-ui-vue3
组件库的使用
样式导入
import '@st-common/ui-vue3/es/style.css' // 小尾巴 vue3 组件库样式
导入并使用组件
<script setup>
import {StPopover} from '@st-common/ui-vue3' // 小尾巴气泡弹框组件
</script>
<template>
<st-popover>
<template #default>
<!-- 触发弹框区域 -->
</template>
<template #subContent>
<!-- 弹框内容 -->
</template>
</st-popover>
</template>