lego-component-heng
v1.0.5
Published
A Vue 3 component library
Readme
组件目录结构
lego-component/ ├─ package.json ├─ tsconfig.json ├─ vite.config.ts ├─ src/ │ ├─ components/ │ │ ├─ LText/ │ │ │ ├─ index.vue │ │ │ └─ index.ts │ │ └─ LButton/ │ │ ├─ index.vue │ │ └─ index.ts │ ├─ index.ts # 组件库入口 ├─ dist/ # 打包输出
组件库单元测试
- 通用测试框架
- Jest
- Mocha
- Jasmine
- vue-cli
- Vue Test Utils 避免手动配置,所以使用测试插件@vue/cli-plugin-unit-jest https://cli.vuejs.ac.cn/core-plugins/unit-jest#vue-cli-plugin-unit-jest
- Vite
- Vitest
