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>
相关推荐
brzhang4 小时前
我操,终于有人把 AI 大佬们 PUA 程序员的套路给讲明白了!
前端·后端·架构
止观止4 小时前
React虚拟DOM的进化之路
前端·react.js·前端框架·reactjs·react
goms4 小时前
前端项目集成lint-staged
前端·vue·lint-staged
谢尔登4 小时前
【React Natve】NetworkError 和 TouchableOpacity 组件
前端·react.js·前端框架
Lin Hsüeh-ch'in5 小时前
如何彻底禁用 Chrome 自动更新
前端·chrome
augenstern4166 小时前
HTML面试题
前端·html
张可6 小时前
一个KMP/CMP项目的组织结构和集成方式
android·前端·kotlin
G等你下课7 小时前
React 路由懒加载入门:提升首屏性能的第一步
前端·react.js·前端框架
蓝婷儿8 小时前
每天一个前端小知识 Day 27 - WebGL / WebGPU 数据可视化引擎设计与实践
前端·信息可视化·webgl
然我8 小时前
面试官:如何判断元素是否出现过?我:三种哈希方法任你选
前端·javascript·算法