封装组件发布至npm,支持unplugin-vue-components插件按需引入,超详细步骤!!

首先,确保你已经拥有了npm账号,并且安装了Node.js环境。

  1. 创建组件库项目:



mkdir my-component-library
cd my-component-library
npm init -y
  1. 安装依赖:



npm install --save-dev rollup @vue/compiler-sfc
npm install --save-dev rollup-plugin-vue @vue/compiler-sfc
npm install --save-dev @rollup/plugin-node-resolve
npm install --save-dev rollup-plugin-terser
  1. 创建rollup配置文件rollup.config.js:



import { defineConfig } from 'rollup';
import vue from 'rollup-plugin-vue';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
 
export default defineConfig({
  input: 'index.js', // 入口文件
  output: [
    {
      file: 'dist/my-component-library.cjs.js',
      format: 'cjs',
    },
    {
      file: 'dist/my-component-library.esm.js',
      format: 'es',
    },
  ],
  plugins: [
    vue({
      compileTemplate: true,
      css: true,
    }),
    nodeResolve(),
    terser(),
  ],
});
  1. 创建入口文件index.js:



// 引入你的组件
export { default as MyButton } from './components/MyButton.vue';
// 继续引入其他组件...
  1. 创建组件模板MyButton.vue:



<template>
  <button class="my-button">Click Me</button>
</template>
 
<script>
export default {
  name: 'MyButton',
  // 组件的其他选项...
};
</script>
 
<style scoped>
.my-button {
  padding: 10px 20px;
  background-color: #f76a26;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
</style>
  1. 创建你的组件库入口文件my-component-library.js:



import MyButton from './components/MyButton.vue';
 
export { MyButton };
  1. 创建一个简单的README.md文件描述你的组件库。
  2. 配置package.json发布脚本:



{
  "name": "my-component-library",
  "version": "1.0.0",
  "scripts": {
    "build": "rollup -c"
  },
  "main": "dist/my-component-library.cjs.js",
  "module": "dist/my-component-library.esm.js",
  "files": [
    "dist",
    "components"
  ],
  "peerDependencies": {
    "vue": "^3.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
  1. 构建组件库:



npm run build
  1. 登录到你的npm账号:



npm login
  1. 发布到npm:



npm publish
  1. 使用unplugin-vue-components插件按需引入组件:

    首先安装unplugin-vue-components和unplugin-auto-import:




npm install --save-dev unplugin-vue-components unplugin-au
VUE , npm , gin
最后修改于:2024年08月08日 18:32

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日