溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么制作Vue組件庫并發(fā)布到npm

發(fā)布時間:2022-01-13 21:03:15 來源:億速云 閱讀:206 作者:iii 欄目:編程語言

這篇文章主要講解了“怎么制作Vue組件庫并發(fā)布到npm”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么制作Vue組件庫并發(fā)布到npm”吧!

怎么制作Vue組件庫并發(fā)布到npm

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

生成package.json如下,注意如果要發(fā)布到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、建立目錄結(jié)構(gòu)

目錄結(jié)構(gòu)如下

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

3、本地調(diào)試

  • vueComponentDi/index.js

export default function(){
    console.log('本地調(diào)試')
}
  • 新建一個vue項目

vue create testvue

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

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

在testvue執(zhí)行npm link將vuecomponentdi軟鏈接到node_modules中

  • vuecomponentdi安裝Eslint

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

安裝方法:

 npm install eslint@6.7.2 --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>

控制臺打印>本地調(diào)試

4、開發(fā)一個button組件

  • button模塊:進入vueComponentDi/packages/button/index.vue

type只支持傳入primary屬性,v-on="listeners"表示包含了父作用域中的(不含.native修飾器的)v?on事件監(jiān)聽器。它可以通過v?on="listeners"表示包含了父作用域中的 (不含 .native 修飾器的) v-on 事件監(jiān)聽器。它可以通過 v-on="listeners" 傳入內(nèi)部組件

<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模塊導(dǎo)出:進入vueComponentDi/packages/button/index.js

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

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

因為開發(fā)的組件不止一個,所以需要在入口文件統(tǒng)一導(dǎo)出

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、開發(fā)一個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模塊導(dǎo)出:vueComponentDi/packages/toast/index.js

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

import toast from './index.vue'
toast.install = (Vue) => {
    const toastConstructor = Vue.extend(toast);//使用基礎(chǔ) Vue 構(gòu)造器,創(chuàng)建一個“子類”。參數(shù)是一個包含組件選項的對象。
    let $vm = new toastConstructor();//將這個子類實例化
    let $el = $vm.$mount().$el;//$vm執(zhí)行$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
  • 聚合導(dǎo)出: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、發(fā)布到npm

  • 公有配置

組件開發(fā)完成需要發(fā)布到npm以便于別人使用;因為發(fā)布的是公有包,所以需要在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"
  }
}
  • 發(fā)布

npm發(fā)布很簡單,只需要兩個命令:

npm login
npm publish

執(zhí)行npm login需要你有npm賬號,可以到 npm官網(wǎng) 注冊

npm官網(wǎng)地址:https://www.npmjs.com/

發(fā)布完成之后就可以在任何一個vue2項目中安裝使用了:

npm install vuecomponentdi

感謝各位的閱讀,以上就是“怎么制作Vue組件庫并發(fā)布到npm”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對怎么制作Vue組件庫并發(fā)布到npm這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI