站長資訊網
最全最豐富的資訊網站

如何從0擼出一個Vue組件庫并發布到npm

如何從0擼出一個Vue組件庫并發布到npm?下面本篇文章手把手帶大家從0開發一個Vue組件庫,看看怎么發布到npm,希望對大家有所幫助。

如何從0擼出一個Vue組件庫并發布到npm

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 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>

控制臺打印>本地調試

4、開發一個button組件

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

type只支持傳入primary屬性,v-on="

listeners"表示包含了父作用域中的(不含.native修飾器的)v?on事件監聽器。它可以通過v?on="listeners"表示包含了父作用域中的 (不含 .native 修飾器的) v-on 事件監聽器。它可以通過 v-on="

listeners" 傳入內部組件

<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官網 注冊

npm官網地址:https://www.npmjs.com/

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

npm install vuecomponentdi

git地址: vue組件開發(https://gitee.com/geeksdidi/vue-component-di)

贊(0)
分享到: 更多 (0)
網站地圖   滬ICP備18035694號-2    滬公網安備31011702889846號
色婷婷激情av精品影院| 人妻少妇乱子伦精品| 日韩一区二区a片免费观看| 精品无码成人网站久久久久久| 国产成人精品男人的天堂538| 99国产精品免费视频观看| 亚洲国产精品日韩av不卡在线| 久久99国产精品尤物| 久久精品中文字幕| 国产亚洲精品va在线| 国产成人麻豆亚洲综合无码精品 | 国产成人精品久久一区二区三区av| 日韩丰满少妇无吗视频激情内射| 国产精品白丝喷水在线观看| 在线观看精品一区| 国产精品成熟老妇女| 亚洲精品天堂成人片AV在线播放| 亚洲国产美女精品久久久久 | 无码日韩AV一区二区三区| 日韩内射激情视频在线播放免费| 无码欧精品亚洲日韩一区夜夜嗨 | 久久国产精品-国产精品| 国产午夜精品一区二区| 精品亚洲一区二区三区在线观看| 精品一卡2卡三卡4卡乱码精品视频| 97精品国产91久久久久久久| 99re6这里只有精品视频| 久久夜色精品国产网站| 99re6在线视频精品免费下载| 日韩精品国产另类专区| 99精品视频在线观看免费播放| 无码国内精品久久人妻| 麻豆亚洲AV永久无码精品久久| 日韩欧精品无码视频无删节 | 91麻豆精品国产片在线观看| 99热精品在线播放| 精品一区二区三区在线观看视频| 精品日韩亚洲AV无码一区二区三区| 米奇777四色精品人人爽| 精品久久久久久无码专区| 51视频国产精品一区二区|