# 安装
# npm 安装
现代前端工程化的开发模式下,推荐使用 npm 的方式安装,方便通过 ES Module 方式引入组件。
npm install @wu-component/ui-plus
# CDN
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--引入底层库-->
<script src="https://unpkg.com/@wu-component/web-core-plus@next"></script>
<!--引入组件库->
<script src="https://unpkg.com/@wu-component/ui-plus"></script>
</head>
<body>
<div id="app">
<!--使用组件,支持的组件-->
<wu-plus-button type="primary" size="mini">mini</wu-plus-button>
</div>
</body>
</html>