如何從0開發一個Vue組件庫併發布到npm

来源:https://www.cnblogs.com/zdsdididi/archive/2022/06/20/16392869.html
-Advertisement-
Play Games

1、新建文件夾在終端打開執行 npm init -y 生成package.json如下,註意如果要發佈到npm,name不能有下劃線,大寫字母等 { "name": "vuecomponentdi", "version": "1.0.0", "description": "", "main": "i ...


1、新建文件夾在終端打開執行 npm init -y

生成package.json如下,註意如果要發佈到npm,name不能有下劃線,大寫字母等

{
"name": "vuecomponentdi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}

2、建立目錄結構

目錄結構如下

-- vueComponentDi
-- packages
-- button
-- index.js
-- index.vue
-- toast
-- index.js
-- index.vue
-- index.js
-- package.json

3、本地調試

  • vueComponentDi/index.js
export default function(){
console.log('本地調試')
}
  • 新建一個vue項目
vue create testvue

在testvue下的package.json下的測試依賴devDependencies添加vueComponentDi/index.js絕對地址

"devDependencies": {
...
"vuecomponentdi": "F:/vueComponent@Di/vueComponentDi",//根據自己實際項目地址填寫
...
}
  • 執行npm link

在testvue執行npm link將vuecomponentdi軟鏈接到node_modules中

  • vuecomponentdi安裝Eslint

由於testvue引入組件會進行Eslint檢測,不安裝會報錯(testvue關閉Eslint可省略這一步)

安裝方法:

npm install [email protected] --save-dev
./node_modules/.bin/eslint --init
  • 在testvue使用vuecomponentdi

import test from "vuecomponentdi"

<template>
<div class="home">
<img alt="Vue logo" src="../assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
</template>

<script>
// @ is an alias to /src
import HelloWorld from '@/components/HelloWorld.vue'
import test from "vuecomponentdi"
export default {
name: 'Home',
components: {
HelloWorld
},
created(){
test()
}
}
</script>

控制台列印>本地調試

4、開發一個button組件

  • button模塊:進入vueComponentDi/packages/button/index.vue
    type只支持傳入primary屬性.
    v-on = "$listemers"表示包含了父作用域中的(不含.native修飾符的) v-on事件監聽器,它可以通過v-on="$listerners"傳入內部組件
<template>
<div>
<button class="di-button" v-on="$listeners" :class="[type?`di-button--${type}`:'']"><slot></slot></button>
</div>
</template>
<script>
export default {
name:"di-button",
props:{
type:String
}
}
</script>
<style>
.di-button{
display: inline-block;
line-height: 1;
white-space: nowrap;
cursor: pointer;
background: #fff;
border: 1px solid #dcdfe6;
color: #606266;
-webkit-appearance: none;
text-align: center;
box-sizing: border-box;
outline: none;
margin: 0;
transition: .1s;
font-weight: 500;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
padding: 12px 20px;
font-size: 14px;
border-radius: 4px;
}
.di-button:focus, .di-button:hover {
color: #409eff;
border-color: #c6e2ff;
background-color: #ecf5ff;
}
.di-button:active {
color: #3a8ee6;
border-color: #3a8ee6;
outline: none;
}
.di-button--primary {
color: #fff;
background-color: #409eff;
border-color: #409eff;
}
.di-button--primary:focus, .di-button--primary:hover {
background: #66b1ff;
border-color: #66b1ff;
color: #fff;
}
.di-button--primary.is-active, .di-button--primary:active {
background: #3a8ee6;
border-color: #3a8ee6;
color: #fff;
}
</style>
  • button模塊導出:進入vueComponentDi/packages/button/index.js

如果導出一個帶有install函數的對象,則在Vue2中可以直接使用Vue.use(xx)調用此函數,既執行 Vue.component(name,option)創建了一個組件

import button from "./index.vue"
button.install=(Vue)=>{
Vue.component(button.name,button)
}
export default button
  • 聚合導出button:進入vueComponentDi/index.js

因為開發的組件不止一個,所以需要在入口文件統一導出

import diButton from "./packages/button"
export {
diButton
}
  • 在testvue使用
<template>
<div class="home">
<di-button type="primary">按鈕</di-button>
</div>
</template>
<script>
// @ is an alias to /src

import Vue from 'vue'
import {diButton} from "vuecomponentdi"
Vue.use(diButton)
export default {
name: 'Home'
}
</script>

5、開發一個toast彈窗

  • toast模塊:vueComponentDi/packages/toast/index.vue

type只支持warning和success

<template>
<div class="di-toast" :class="`di-toast--${type}`" v-if="show">
{{message}}
</div>
</template>
<script>
export default {
data(){
return {
message:'',
show:false,
type:''
}
}
}
</script>
<style>
.di-toast{
width: 60%;
width: 200px;
background: rgb(15, 15, 15);
padding:3px;
text-align: center;
color: #fff;
border-radius: 10px;
position: fixed;
left: calc(50% - 100px);
top: 200px;
}
.di-toast--warning{
background: #FDF6EC;
color: #E6A28B;
}
.di-toast--success{
background: #F0F9EB;
color: #93C26D;
}
</style>
  • toast模塊導出:vueComponentDi/packages/toast/index.js

因為toast彈窗需要在vue中支持this.$toast調用,所以用了Vue.extend方法,這個 API 在日常開發中很少使用,一般在開發組件的時候它才能派上用場,官方定義:使用基礎 Vue 構造器,創建一個“子類”。參數是一個包含組件選項的對象

import toast from './index.vue'
toast.install = (Vue) => {
const toastConstructor = Vue.extend(toast);//使用基礎 Vue 構造器,創建一個“子類”。參數是一個包含組件選項的對象。
let $vm = new toastConstructor();//將這個子類實例化
let $el = $vm.$mount().$el;//$vm執行$mount()手動掛載會返回一個帶有$el的對象,$el就是一個dom對象
document.querySelector("body").appendChild($el);//將這個dom對象添加到body中
//在Vue原型上註入$toast方法
Vue.prototype.$toast = (option) => {
$vm.show = true
if (!(option instanceof Object)) {
//如果傳的不是對象直接彈出
$vm.message = option
} else {
$vm.message = option.message
$vm.type = option.type
}
setTimeout(() => {
$vm.show = false
}, 2000)
}
}


export default toast
  • 聚合導出:vueComponentDi/index.js
import diButton from "./packages/button"
import toast from "./packages/toast"

export {
diButton,
toast
}
  • vuetest中使用toast
<template>
<div class="home">
<di-button type="primary" @click="toast">按鈕</di-button>
</div>
</template>
<script>
// @ is an alias to /src

import Vue from "vue";
import { diButton, toast } from "vuecomponentdi";
Vue.use(diButton);
Vue.use(toast);
export default {
name: "Home",
methods: {
toast() {
// this.toast("這是一個普通彈窗");
// this.$toast({
// message: "這是一個成功彈窗",
// type: "success",
// });
this.$toast({
message: "這是一個警告彈窗",
type: "warning",
});
},
},
};
</script>

6、發佈到npm

  • 公有配置

組件開發完成需要發佈到npm以便於別人使用;因為發佈的是公有包,所以需要在vueComponentDi/package.json中配置

"publishConfig": {
"access": "public"
},

完整package.json:

{
"name": "vuecomponentdi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^6.7.2",
"eslint-plugin-vue": "^8.2.0"
},
"publishConfig": {
"access": "public"
}
}

  • 發佈

npm發佈很簡單,只需要兩個命令:

npm login
npm publish

執行npm login需要你有npm賬號,可以到 npm官網 註冊
發佈完成之後就可以在任何一個vue2項目中安裝使用了:

npm install vuecomponentdi

git地址: vue組件開發


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 原文鏈接:基於開源大數據調度系統Taier的Web前端架構選型及技術實踐 課件獲取:關註公眾號**“數棧研習社”,後臺私信“Taier”**獲得直播課件 視頻回放:點擊這裡 Taier開源項目地址:github丨gitee 上兩期,我們為大家分享了Taier入門及控制台的介紹,本期我們為大家分享Ta ...
  • **導讀:**在公司內部,業務線經常面臨數據有哪些、質量如何、是否可用、能產生多大價值的困惑,並且,隨著數據量的增加,計算和存儲資源面臨瓶頸。本次將圍繞數據治理重點關註的計算、存儲等方面,分享數據治理的產品實踐。通過分享,一方面可以瞭解當前業務線主要面臨的待治理的數據問題;另一方面,從計算、存儲等主 ...
  • user_profile表: id device_id gender age university province 1 2138 male 21 北京大學 Beijing 2 3214 male 復旦大學 Shanghai 3 6543 female 20 北京大學 Beijing 4 2315 ...
  • 隨著科技的發展,用戶通過網路進行線上支付越來越方便。平時上網購物、交水電費、轉賬匯款等都需要綁定銀行卡,但要手動輸入16-19位銀行卡號,速度慢、易出錯始終是線上移動支付的一個“硬傷”。為了給移動商業企業的用戶打造優質的支付體驗,簡化操作程式已經成為提升企業競爭力的重要手段。因此,使用華為機器學習服 ...
  • 為什麼要用lerna 將大型代碼倉庫分割成多個獨立版本化的 軟體包(package)對於代碼共用來說非常有用。但是,如果某些更改 跨越了多個代碼倉庫的話將變得很 麻煩 並且難以跟蹤,並且, 跨越多個代碼倉庫的測試將迅速變得非常複雜。 為瞭解決這些(以及許多其它)問題,某些項目會將 代碼倉庫分割成多個 ...
  • 組件的出現是為了實現以下兩個目標: 降低整體複雜度,提升代碼的可讀性和可維護性 提升局部代碼的可復用性 絕大部分情況下,一個組件就是頁面中某個區域,組件包含該區域的: 功能(JS代碼) 內容(模板代碼) 樣式(CSS代碼) 要在組件中包含樣式,需要構建工具的支撐 組件開發 創建組件 組件是根據一個普 ...
  • 前言 對於傳統的 JavaScript 程式我們會使用函數和基於原型的繼承來創建可重用的組件,但對於熟悉使用面向對象方式的程式員使用這些語法就有些棘手,因為他們用的是基於類的繼承並且對象是由類構建出來的。 從 ECMAScript 2015,也就是 ES6 開始, JavaScript 程式員將能夠 ...
  • 這裡給大家分享我在網上總結出來的一些知識,希望對大家有所幫助 基於Vue.js 2.x系列 + Element UI 的後臺系統許可權控制 前言:關於vue許可權路由的那些事兒…… 項目背景:現有一個後臺管理系統,共存在兩種類型的人員 ①超級管理員(稱作admin),②普通用戶(稱作editor) 每種 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...