如何将项目里的vue组件单独打包?

首先打开package.json,再scripts属性下添加以下命令:

"scripts": {
 	...
    "lib:build": "vue-cli-service build --target lib --name VuePartivleground ./src/components/VuePartivleground/index.js",
    "lib:publish": "npm run lib:build && npm publish"
  },

VuePartivleground在为组件名称,./src/components/VuePartivleground/index.js为组件入口文件位置

执行npm run lib:build后,会生成dist目录,组件生成的包就在这个目录下面。

你可能感兴趣的:(vue)