ndst-ui
v0.1.25
Published
``` npm install ```
Downloads
7
Readme
ndst-ui
Project setup
npm install
Compiles and hot-reloads for development
npm run serve
Compiles and minifies for production
npm run build
Lints and fixes files
npm run lint
Customize configuration
组件开发及发布流程及注意事项
开发流程
1.在src/package 下开发新的组件,
2.在package下 index.js中注册组件。
3.修改package.json中的版本号(递增)
4.组件库打包 npm run build
5.组件库发布 npm publish
6.组件库删除指定版本 npm unpublish ndst-ui@version (只能删除在72小时内发布的包)
注意事项
组件开发前请务必更新代码,组件发布前务必提交代码,否则可能造成代码被覆盖,新版本丢失组件的问题出现
组件库使用及注意
该组件库为vue2组件库,对于vue3项目使用有兼容性问题
1.装依赖包
npm install ndst-ui
2.在main.js中引入UI库
import myUI from 'ndst-ui'
import 'ndst-ui/lib/ndst-ui.css
3.全局注册
Vue.use('myUI')