91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

詳解使用webpack打包編寫一個vue-toast插件

發布時間:2020-09-16 04:38:08 來源:腳本之家 閱讀:224 作者:愛敲代碼的程序員 欄目:web開發

本文介紹了使用webpack打包編寫一個vue插件,分享給大家。具體如下:

一、說明:

需求:創建一個toast插件

思路:利用vue組件創建模板,使用webpack打包生成插件再全局使用。

# 項目目錄:
|_ package.json
|_ webpack.config.js
|_ .babelrc
|_ dist
|_ src
 |_ index.html
 |_ lib
  |_ index.js
  |_ vue-toast.vue

1.1 webpack基礎

1、基礎插件

- html-webpack-plugin :根據同一個模板生成多個頁面
- extract-text-webpack-plugin
- UglifyJSPlugin : js壓縮插件
- CommonsChunkPlugin : 把多個頁面中公用的文件抽出
- clean-webpack-plugin : 打包過程前清除以前的文件
- copy-webpack-plugin:

2、常用loader解析器

- css-loader (解析css文件)
- sass-loader/less-loader/node-sass (預編譯解析)
- file-loader/url-loader 解析圖片(png,jpg/svg/gif)
- 給css添加前綴: postcss-loader,autoprefixer

3、webpack.config.js配置文件

//webpack3.0不再支持相對路徑,所以在node項目中,可以使用path模塊來將相對路徑轉為絕對路徑
var path = require('path'); 

// 核心配置
module.exports={
 // 入口文件
 entry:'./src/lib/index.js', 
 // 出口配置
 output:{
  path:path.join(__dirname,'./dist'), //輸入路徑
  filename:'vue-toast-demo.js', //打包后文件名
// 打包后的格式(三種規范amd,cmd,common.js)通過umd規范可以適應各種規范,以及全局window屬性
  libraryTarget:'umd', 
  library: 'VueToastDemo'
 },
 module:{
  rules:[ //解析模塊時需要的模塊加載器
   {
    test:/\.vue$/,
    loader:'vue-loader'
   },
   { test: /\.js$/, exclude: /node_modules/, loader: "babel-loader" }
  ]
 },
 plugins:[]
}

 二、開發一個vue-toast插件

  1. 借助npm平臺發布一個vue插件
  2. 流程: 聲明插件——寫插件——注冊插件——使用插件

官方文檔中說明:寫插件有四種方法:

 # 1.添加全局方法或屬性
Vue.myGlobalMethod = function(){...}

# 2. 添加全局資源
Vue.directive('my-directive',{
 bind(el,binding,vnode,oldVnode){...}
})
# 3. 注入組件
Vue.mixin({
  created:function(){}
 })
# 4. 添加實例方法
Vue.prototype.$myMethod =function(options){}

開發vue插件的幾個基本步驟:

1、Vue.js 的插件應當有一個公開方法 install 。

2、install方法的第一個參數是 Vue 構造器,第二個參數是一個可選的選項對象

myplugin.install = function(Vue,options){...}

官方說明:https://cn.vuejs.org/v2/guide/plugins.html#使用插件

import ToastComonent from './vue-toast.vue' //引入vue模板組件

let Toast = {}
Toast.install = function(){ //通過install注冊插件
 Vue.prototype.$toast = function(){
  Vue.extend(ToastComponent)
 }
} 
if(window.Vue){
//如果是直接用script標簽引入插件,可通過此法注冊插件到vue
 Vue.use(Toast) 
}
export default Toast; //導出toast

實踐

需求:一個toast彈層功能

1、template.vue。提供html模板

<template>
 <section class="toast-container" :class="visible?'fade-in':'fade-out'">
  <div class="toast">
   <span>{{message}}</span>
  </div>
 </section>
</template>
<script>
 export default {
  name:'tmp',
  data(){
   return{
    visible:true,
    message:'默認提示語'
   }
  }
 }
</script>
<style>
</style>

2、index.js

import ToastComponent from './vue-toast.vue'

let Toast = {}
Toast.install = function(Vue,options){
 var opt={
  duration:3000,

 }
 for(var key in options){
  opt[key] = options[key];
 }
 Vue.prototype.$toast=function(msg,option){
  if(typeof option =='object'){
   for(var key in option){
    opt[key]=option[key]
   }
  }
  const ToastController= Vue.extend(ToastComponent);

  var instance = new ToastController().$mount(document.createElement('div'))

  instance.message = msg;
  instance.visible = true;

  document.body.appendChild(instance.$el)
  setTimeout(()=>{
   instance.visible=false;
   document.body.removeChild(instance.$el)
  },opt.duration)
 }
 Vue.prototype.$toast['show']=function(msg,option){
  Vue.prototype.$toast(msg,option);
 }
}
if(window.Vue){
 Vue.use(Toast)
}

export default Toast;

demo.html

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Title</title>
 <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
 <!--引入-->
 <script src="../node_modules/vue/dist/vue.js"></script>
 <script src="../dist/vue-toast.js"></script>
</head>
<body>
<div id="app">
 <h2>vue-toast for mobile{{msg}}</h2>
 <div class="demo-box">
  <button @click="test">默認效果</button>
  <button>5s后自動關閉</button>
  <button>消失后執行回調</button>
 </div>
</div>
<script>
 var vm = new Vue({
  el:"#app",
  data:{
   msg:'你好'
  },
  methods:{
   test(){
   // 使用
    this.$toast.show('再來',{
     duration:1000
    })
   }
  }
 })
</script>
</body>
</html>

總結

  1. 使用基礎Vue構造器,通過vue組件來創建一個子類:Vue.extend(component)
  2. 編寫vue插件的四種方法:常用-Vue.prototype.$method, 其他:Vue.method,Vue.mixin(option),Vue.directive(‘method',option)
  3. webpack配置output的path必須為絕對路徑
  4. webpack配置三大屬性,entry,output,module,plugins

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滨州市| 精河县| 华容县| 两当县| 隆化县| 邳州市| 涞水县| 榆林市| 夏邑县| 木兰县| 金昌市| 内黄县| 临江市| 丰原市| 咸宁市| 新民市| 宕昌县| 清徐县| 桃江县| 民勤县| 葫芦岛市| 义马市| 晋宁县| 丰镇市| 淮阳县| 阳东县| 固始县| 浦城县| 余干县| 鄢陵县| 锡林浩特市| 扬中市| 山西省| 琼中| 广宁县| 邵武市| 河北区| 淳化县| 宜黄县| 漾濞| 平潭县|