vue 发布自己的npm组件

1、在项目任意位置创建index.ts文件
2、导入要到处的组件,使用vue提供的install 功能全局挂在;

javascript 复制代码
import GWButton from "@/views/GWButton.vue";
import GWAbout from "@/views/AboutView.vue";

const components = {
  GWButton,
  GWAbout,
};

function install(Vue: any) {
  const keys = Object.keys(components);
  keys.forEach((name) => {
    // eslint-disable-next-line @typescript-eslint/ban-ts-comment
    // @ts-ignore
    const component = components[name];
    Vue.component(component.name || name, component);
  });
}

export default {
  install,
  ...components,
};

3、package.json中添加如下命令

完整代码

javascript 复制代码
{
  "name": "gw-components",
  "version": "0.1.0",
  "private": false,
  "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "test:unit": "vue-cli-service test:unit",
    "test:e2e": "vue-cli-service test:e2e",
    "lint": "vue-cli-service lint",
    "package": "vue-cli-service build --target lib --dest lib src/components/index.ts"
  },
  "main": "lib/gw-components.umd.min.js",
  "dependencies": {
    "axios": "^1.6.6",
    "core-js": "^3.8.3",
    "element-plus": "^2.5.3",
    "lodash": "^4.17.21",
    "register-service-worker": "^1.7.2",
    "vue": "^3.2.13",
    "vue-class-component": "^8.0.0-0",
    "vue-router": "^4.0.3",
    "vuex": "^4.0.0"
  },
  • 将private设置为false,否则无法发布到npm
  • 将name修改为我们的组件库的名字
  • version为组件库的版本,每次打包发布注意都要更新
  • 增加main为lib/like-ui.umd.min.js,我们组件库打包好的入口文件。 build:like-ui命令中
  • --target 允许将项目中的任何组件构建为库或Web组件。
  • --dest 打包后的输出文件夹
  • 最后就是我们组件库的入口文件src/components/index.js

4、配置完成后,进行打包

打包后会生成如下文件

javascript 复制代码
npm run package


5、上传npm

1、)登陆NPM,输入账号密码

javascript 复制代码
npm login

2)、发布

javascript 复制代码
//这里我上传的私服,上传公网步骤一样;
npm publish --registry http://xx.xx.xx.xx:4873

5、在另一个项目中使用

javascript 复制代码
//使用npm 下载
npm install gw-components@0.1.0

在main.ts 中挂载

javascript 复制代码
import { createApp } from "vue";
import App from "./App.vue";
import "./registerServiceWorker";
import router from "./router";
import store from "./store";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignorey
import ElementPlus from "element-plus";
import "element-plus/dist/index.css";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignorey
import GWComponents from "gw-components";
import "gw-components/lib/gw-components.css";

createApp(App)
  .use(store)
  .use(router)
  .use(GWComponents)
  .use(ElementPlus)
  .mount("#app");

在组件中直接使用即可

javascript 复制代码
<template>
  <div class="home">
    <GWButton></GWButton>
  </div>
</template>

<script lang="ts">
import { Options, Vue } from "vue-class-component";
import HelloWorld from "@/components/HelloWorld.vue"; // @ is an alias to /src

@Options({
  components: {
    HelloWorld,
  },
})
export default class HomeView extends Vue {}
</script>
相关推荐
leobertlan2 小时前
2025年终总结
前端·后端·程序员
子兮曰3 小时前
OpenClaw架构揭秘:178k stars的个人AI助手如何用Gateway模式统一控制12+通讯频道
前端·javascript·github
Howrun7773 小时前
VSCode烦人的远程交互UI讲解
ide·vue.js·vscode
百锦再3 小时前
Reactive编程入门:Project Reactor 深度指南
前端·javascript·python·react.js·django·前端框架·reactjs
莲华君3 小时前
React快速上手:从零到项目实战
前端·reactjs教程
百锦再3 小时前
React编程高级主题:测试代码
android·前端·javascript·react.js·前端框架·reactjs
易安说AI3 小时前
Ralph Loop 让Claude无止尽干活的牛马...
前端·后端
失忆爆表症5 小时前
05_UI 组件库集成指南:Shadcn/ui + Tailwind CSS v4
前端·css·ui
小迷糊的学习记录5 小时前
Vuex 与 pinia
前端·javascript·vue.js
发现一只大呆瓜5 小时前
前端性能优化:图片懒加载的三种手写方案
前端·javascript·面试