基于 vue3 + webpack5 + ts + vuepress2 构建的组件库.
包含了 组件
指令
hooks
等效率工具.
// install
npm install divine-plus -S
// main.ts
import DivinePlus from "divine-plus";
import "divine-plus/css/index.css";
const app = createApp(App);
app.use(DivinePlus);
app.mount("#app");
注意: 不要使用 cnpm 安装,vuepress 依赖 vite 很容易出错
1
Download
git clone git@github.com:woow-wu7/8-divine-plus.git
2
Local Testing
npm run dev // or npm run test:dev
3
Document
npm run docs:dev
[封装 01-设计模式] 设计原则 和 工厂模式(简单抽象方法) 适配器模式 装饰器模式
[封装 02-设计模式] 命令模式 享元模式 组合模式 代理模式
[封装 03-设计模式] Decorator 装饰器模式在前端的应用
[封装 04-设计模式] Publish Subscribe 发布订阅模式在前端的应用
[封装 05-ElementUI 源码 01] Row Col Container Header Aside MainFooter
[封装 06-Divine-plus] 从 0 开始封装一个 VUE3-UI 组件库
- react 源码分析-仓库
- react 源码分析-我的掘金文章
- js 实现单向链表 - 源码
- 手写 hook 调度-useState 实现 - 源码仓库
- 手写 hook 调度-useState 实现 - 思维导图
- koa 源码分析 - 仓库
- koa 源码调试 - 仓库
- 注意分析:( axios 拦截器 + redux 中间件 + koa 中间件 ) 三者的相同点和区别