# vxe-pc-ui [](https://gitee.com/x-extends/vxe-pc-ui/stargazers) [](https://www.npmjs.com/package/vxe-pc-ui) [](https://github.com/x-extends/vxe-pc-ui/actions/workflows/webpack.yml) [](https://npm-stat.com/charts.html?package=vxe-pc-ui) [](https://github.com/x-extends/vxe-pc-ui/issues) [](https://github.com/x-extends/vxe-pc-ui/issues?q=is%3Aissue+is%3Aclosed) [](https://github.com/x-extends/vxe-pc-ui/pulls) [](https://github.com/x-extends/vxe-pc-ui/pulls?q=is%3Apr+is%3Aclosed) [](LICENSE) 一个基于 [vue](https://www.npmjs.com/package/vue) 的 PC 端组件库 ## 浏览器支持  |  |  |  |  --- | --- | --- | --- | --- | 80+ ✔ | 80+ ✔ | 90+ ✔ | 75+ ✔ | 10+ ✔ | ## 安装 ```shell npm install vxe-pc-ui@3 # npm install vxe-pc-ui@3 vxe-table@3 vxe-design@3 ``` ```javascript import Vue from 'vue' // ... import VxeUIAll from 'vxe-pc-ui' import 'vxe-pc-ui/lib/style.css' // import VxeUITable from 'vxe-table' // import 'vxe-table/lib/style.css' // import VxeUIDesign from 'vxe-design' // import 'vxe-design/lib/style.css' // ... Vue.use(VxeUIAll) // Vue.use(VxeUITable) // Vue.use(VxeUIDesign) ``` ### CDN 使用第三方 CDN 方式记得锁定版本号,避免受到非兼容性更新的影响 ***不建议将第三方的 CDN 地址用于正式环境,因为该连接随时都可能会失效*** ```HTML