手把手教你開發 Vue 組件 ( 一)

很久沒寫文章啦~
新公司有點忙, 再加上最近在寫 node.js, 抽空寫一篇吧! javascript

隨着 Vue 愈來愈火熱, 相關組件庫也很是多啦, 只用輪子怎麼夠, 仍是要造起來!!!
滴滴公共前端團隊已經有了一篇文章 [Vue] 插件開發入門
可是可能具體細節還不夠清楚; 在本文中; 將帶領你們開發一個簡單的分頁組件~css

1 環境配置

首先使用 vue-cli 腳手架, 生成基本項目;html

npm install vue-cli -g
# mvue 是本次項目名稱
vue init webpack mvue複製代碼

若是要開發一個 npm 安裝包, 還修改 package.jsonmain 選項前端

"main": "dist/mvue.js"複製代碼

意思是咱們將提供編譯壓縮後 mvue.js 文件給其餘開發者使用;vue

2. webpack

在前端領域內, 可謂是沒 webpack 不成活; 手寫太麻煩, 就直接給你們文件了, 如下是咱們的 webpack.config.js 文件:java

var path = require('path');
var webpack = require('webpack');

module.exports = {
    entry: {
        main: './src/mvue.js'
    },
    output: {
        path: path.resolve(__dirname, '../dist'),
        publicPath: '/dist/',
        filename: 'mvue.js',
        library: 'mvue',
        libraryTarget: 'umd',
        umdNamedDefine: true
    },
    externals: {
        vue: {
            root: 'Vue',
            commonjs: 'vue',
            commonjs2: 'vue',
            amd: 'vue'
        }
    },
    resolve: {
        extensions: ['', '.js', '.vue']
    },
    module: {
        loaders: [{
            test: /\.vue$/,
            loader: 'vue'
        }, {
            test: /\.js$/,
            loader: 'babel',
            exclude: /node_modules/
        }, {
            test: /\.css$/,
            loader: 'style!css!autoprefixer'
        }, {
            test: /\.less$/,
            loader: 'style!css!less'
        }, {
            test: /\.(gif|jpg|png|woff|svg|eot|ttf)\??.*$/,
            loader: 'url?limit=8192'
        }, {
            test: /\.(html|tpl)$/,
            loader: 'vue-html'
        }]
    },
    plugins: [
        new webpack.DefinePlugin({
            'process.env': {
                NODE_ENV: '"production"'
            }
        }),
        new webpack.optimize.UglifyJsPlugin({
            compress: {
                warnings: false
            }
        }),
        new webpack.optimize.OccurenceOrderPlugin()
    ]
}複製代碼

重點是 entry 和 output, 指定入口文件和輸出文件;
由於咱們要寫的是分頁組件, 因此已經在 components 目錄下建立了 page.vue;
接下來 咱們編寫 webpack 入口文件:node

import Page from './components/page';

const mvue = {
  Page
};

// 導出 install 函數
// Vue.use() 會調用這個函數
const install = function(Vue, opts = {}) {
  // 若是安裝過就忽略
  if (install.installed) return;

  // 指定組件 name
  Vue.component(Page.name, Page);
}

// 自動安裝 方便打包成壓縮文件, 用<script scr=''></script>的方式引用
if (typeof window !== 'undefined' && window.Vue) {
  install(window.Vue);
}

// 把模塊導出
module.exports = {
  install,
  Page
}複製代碼

在入口文件中, 咱們提供了對外公開的組件, install 函數, install 在 vue 組件開發中相當重要, vue 組件的調用方式是 Vue.use(***), 這個函數就會調用組件的 install 函數;
接下來就是各類組件的編寫了!
以分頁組件爲例子, 首先咱們要指定 props, 並對其類型進行驗證,webpack

props: {
    current: {
      type: Number,
      default: 1
    },
    total: {
      type: Number,
      default: 1
    }, 
    currentChange: {
      type: Function
    }
  }複製代碼

一共接受三個參數 分別是:git

當前索引, 總條目, 回調函數github

export default {
  name: 'mvue-page',
  props: {
    current: {
      type: Number,
      default: 1
    },
    total: {
      type: Number,
      default: 1
    }, 
    currentChange: {
      type: Function
    }
  },
  mounted () {
    this.insertPage()
  },

  data () {
    return {
      currentIndex: this.current,
      pageShowArray: [],
      displayCount: 7
    }
  },

  methods: {
// 翻頁
    insertPage () {
      let self = this
      self.pageShowArray = []

      for (var i = 1; i <= self.total; i++) {
        this.pageShowArray.push(i)
      }
      // 小型分頁
      if (this.total <= this.displayCount) { return; }
      let begin = this.currentIndex - 3 
      let end = this.currentIndex + 3

      begin = begin <= 1 ? 1 : begin
      end = end <= this.displayCount ? this.displayCount : end
      begin = begin >= this.total - this.displayCount ? this.total - this.displayCount : begin
      end = end >= this.total ? this.total : end

      let arr = this.pageShowArray.slice(begin - 1, end)
      this.$set(this, 'pageShowArray', arr)
    },

// 上一頁
   pre () {
      if (this.currentIndex <= this.displayCount) {return;}
      this.setIndex(this.currentIndex - this.displayCount)
      this.insertPage()
    },
// 下一頁
    next () {
      if (this.currentIndex >= this.total) {return;}
      this.setIndex(this.currentIndex + this.displayCount)
      this.insertPage()
    },
// item 點擊
    itemClick (current) {
      this.setIndex(current)
      this.insertPage()
// 觸發回調
      this.currentChange(current)
    },
    setIndex (current) {
      let temp = current
      if (temp <= 1) { temp = 1}
      if (temp >= this.total) { temp = this.total}
      this.$set(this, 'currentIndex', temp)
    }
  }
}複製代碼

調用方式

...  html code
<mvue-page :current="2" :total="40" :currentChange='currentChange'></mvue-page> ... js code // 兩種方式選一個便可 // 按需加載 import {Page} from 'mvue' Vue.use(Page) // 所有加載 import mvue from '../dist/mvue.js' Vue.use(mvue);複製代碼

如上, 一個簡單的分頁組件已經有些模樣, 接下來使用 webpack 打包;

// 對應 config 文件
webpack webpack.config.js複製代碼

發佈

npm publish複製代碼

若是有問題, 請在文本下面評論留言, O(∩_∩)O謝謝

相關代碼 : github.com/ericjjj/mvu…歡迎 Star

相關文章
相關標籤/搜索