vue组件发布

前言

公司内部统一使用一套相同的UI组件,将该组件发布到私有服务器上,方便不同子公司开发管理。

想法

通过网上相关网友推荐,使用verdaccio搭建为目前主流方案。

开发与发布

  1. 使用uniapp创建一个最基础的项目
  2. 在项目中生成package.json
npm init
package.json
{
  "name": "cndapp-demo",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
  },
  "devDependencies": {
  }
}

你可能感兴趣的:(vue组件发布)