您好,登錄后才能下訂單哦!
小編給大家分享一下vue封裝第三方插件并發(fā)布到npm的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
gitment
gitment是一個基于github issues封裝的評論插件,以這個插件作為演示,把它封裝成vue插件。vue-gitment,該插件已發(fā)布到npm,并在自己的開源項目vueblog中安裝使用
項目初始化
封裝vue的插件用webpack-simple很合適,vue init webpack-simple vue-gitment
此命令創(chuàng)建我們的項目的目錄,創(chuàng)建文件夾和文件,最后結構是這樣的
lib目錄是我們的插件目錄,其他的默認就好
修改配置項
首先是修改package.json
{ "name": "vue-gitment", "version": "0.1.1", "description": "A comment plugin by gitment", "main": "dist/vue-gitment.js", "directories": { "dist": "dist" }, "scripts": { "dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot", "build": "cross-env NODE_ENV=production webpack --progress --hide-modules" }, "repository": { "type": "git", "url": "git+https://github.com/vue-blog/vue-gitment.git" }, "dependencies": { "gitment": "^0.0.3", "vue": "^2.3.3" }, "devDependencies": { }, "author": "wmui", "license": "MIT", "bugs": { "url": "https://github.com/vue-blog/vue-gitment/issues" }, "homepage": "https://github.com/vue-blog/vue-gitment#readme" }
把依賴性gitment添加到dependencies,main是我們打包后的文件入口,你可以用npm init命令生成一個package.json
修改webpack.config.js
我們只需配置入口和出口,不要刪除默認的配置,因為后面開發(fā)好插件,我們需要查看工作效果
修改index.html
因為我們修改了webpack配置,自然要把script的src修改一下
封裝插件
VueComment.vue內容如下
<template> <div v-comment="options"></div> </template> <script> // 引入依賴項 import Gitment from 'gitment' export default { name: 'vue-comment', props: ['options'], directives: { // 自定義指令 comment: { bind: function (el, binding) { const gitment = new Gitment({ id: binding.value.id + '', owner: binding.value.owner, repo: binding.value.repo, oauth: { client_id: binding.value.oauth.client_id, client_secret: binding.value.oauth.client_secret } }) gitment.render(el) } } } } </script>
相信熟悉vue的一眼都看懂了,render函數(shù)是gitment對象的方法,不用關心,和我們開發(fā)組件是一樣一樣的
index.js封裝組件
import VueComment from './VueComment.vue' const comment = { install: function(Vue) { Vue.component(VueComment.name, VueComment) } } // 這里的判斷很重要 if (typeof window !== 'undefined' && window.Vue) { window.Vue.use(comment) } export default comment
我們在webpack配置的入口文件就是他,install是掛載組件的方法,有了它我們就可以在外部use一個插件了,簡單吧
測試插件
首先測試build是否成功
npm run builddist
目錄會生成如下文件
可喜可賀,接下來測試插件是否正常工作
我們需要把package和webpack的修改一下,這就是為什么我前面說不要刪除而是注釋掉 ,把package.json的main修改為dist/build.js,wepack的entry和filename換成默認配置,index.html的src也換成默認的
在main.js中引入我們的組件
import VueComment from './lib/index.js' Vue.use(VueComment)
App.vue中使用我們的插件
<template> <div id="app"> <vue-comment :options="options" v-if="options"></vue-comment> </div> </template> <script> export default { name: 'App', data() { return { options: { id: 'article id', owner: 'Your GitHub ID', repo: 'The repo to store comments', oauth: { client_id: 'Your client ID', client_secret: 'Your client secret', } } } } } </script> <style> @import '~gitment/style/default.css'; </style>
執(zhí)行npm run dev
哈哈,它正常工作了,Error: Not Found是因為我沒配置client_id。
發(fā)布插件
完成測試工作后我們就可以發(fā)布到npm了,這個就比較見到了,注冊個npm賬號,在你要發(fā)布的項目目錄執(zhí)行npm login,輸入賬號密碼和郵箱,然后npm publish就發(fā)布成功了,npm install vue-gitment查看效果,建議直接看源代碼,因為真的很簡單。
以上是“vue封裝第三方插件并發(fā)布到npm的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。