安装
- 文件夹里包含一个 demo,可以参考如何使用,注意引入的路径
- 下载仓库代码
git clone https://github.com/lml1848687/Scorpio.git
- 安装依赖
npm install
- 运行
npm run serve
- Demo
import Vue from "vue";
import { Button } from "Scropio";
new Vue({
el: "#app",
components: {
Button
}
});
<div>
<button></button>
</div>