基於vue-cli重構多頁面腳手架

引言

官方提供的項目生成工具vue-cli沒有對多頁面webApp的支持,可是在實際的項目中,咱們須要這樣的腳手架,參考了不少大牛的方法,這裏提供了一種個人單頁面腳手架轉換爲多頁面腳手架的方案,供你們參考。很差的地方也請你們指正。javascript

準備

使用vue-cli生成一個你須要的單頁面項目腳手架,而後咱們就要開始咱們的改裝工程了。html

重構過程

步驟一 改變目錄結構

  • step1 在src目錄下面新建views文件夾,而後再views文件夾下新建index文件夾
  • step2 將src目錄下的main.js和App.vue移動到step1中的index文件夾下,並將main.js重命名爲index.js
  • step3 將src目錄下的router文件夾移動到step1中的index文件夾下,若是不使用router能夠再index.js中註釋掉,我沒有使用,由於個人每一個頁面不是單頁面的應用,沒必要要使用路由功能
  • step4 將根目錄下的index.html文件移動到step1中的index文件夾下

步驟二 修改build下的配置文件

在生產環境下會分頁面打包獨有js文件,並抽取公共js,不會什麼都打包成一坨。打包後文件目錄結構也是比較清晰地。一下全部修改都在build文件夾下vue

  • step1 修改utils.js,增長兩個函數,一個用來獲取頁面多入口,一個用來輸入打包後的頁面,並注入js:
var glob = require('glob')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var PAGE_PATH = path.resolve(__dirname, '../src/views')
var merge = require('webpack-merge')

//多入口配置
//獲取views文件夾下,每一個頁面下的index.js做爲頁面入口,故每一個頁面下都必須有index.js
exports.entries = function() {
  var entryFiles = glob.sync(PAGE_PATH + '/*/index.js')
  var map = {}, tmp = [], pathname = '';
  entryFiles.forEach((filePath) => {
      var filename = filePath.substring(filePath.lastIndexOf('\/') + 1, filePath.lastIndexOf('.'))
      tmp = filePath.split('/').splice(-4)
      map[tmp[2] + '/' + filename] = filePath
  })
  return map
}

//多頁面輸出配置
//讀取views文件夾下的對應每一個頁面的html後綴文件,而後放入數組中
//若是想要更深的定製或者修改,建議你們看一下CommonsChunkPlugin
//推薦一個基礎的 https://segmentfault.com/q/1010000009070061
exports.htmlPlugin = function() {
  let entryHtml = glob.sync(PAGE_PATH + '/*/*.html')
  let arr = []
  entryHtml.forEach((filePath) => {
      let jsPath = '', tmp = [];
      let filename = filePath.substring(filePath.lastIndexOf('\/') + 1, filePath.lastIndexOf('.'))
      tmp = filePath.split('/').splice(-4)
      jsPath = tmp[2] + '/' + 'index'
      let conf = {
          template: filePath,
          filename: filename + '.html',
          chunks: ['manifest', 'vendors', jsPath],
          inject: true
      }
      if (process.env.NODE_ENV === 'production') {
          conf = merge(conf, {
              minify: {
                  removeComments: true,
                  collapseWhitespace: true,
                  removeAttributeQuotes: true
              },
              chunksSortMode: 'dependency'
          })
      }
      arr.push(new HtmlWebpackPlugin(conf))
  })
  return arr
}

複製代碼
  • step2 修改webpack.base.conf.js文件配置的入口
// entry: {
// app: './src/main.js'
// },
entry: utils.entries(),
複製代碼
  • step3 修改webpack.dev.conf.js文件的打包方法 找到下面的代碼,將其註釋掉:
new HtmlWebpackPlugin({
  filename: 'index.html',
  template: 'index.html',
  inject: true
}),
複製代碼

在plugins這個屬性值的後面加上咱們上面的方法,下面是代碼片斷:java

// new HtmlWebpackPlugin({
    // filename: 'index.html',
    // template: 'index.html',
    // inject: true
    // }),
    new FriendlyErrorsPlugin()
  ].concat(utils.htmlPlugin())
複製代碼
  • step4 修改webpack.prod.conf.js 找到下面的代碼,註釋掉:
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
minify: {
    removeComments: true,
    collapseWhitespace: true,
    removeAttributeQuotes: true
        // more options:
        // https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),
複製代碼

在plugins這個屬性值的後面加上咱們上面的方法,下面是代碼片斷:webpack

new CopyWebpackPlugin([{
            from: path.resolve(__dirname, '../static'),
            to: config.build.assetsSubDirectory,
            ignore: ['.*']
        }])
    ].concat(utils.htmlPlugin())
複製代碼

配置完成。正常啓動項目便可。ios

後記

一開始我也是扒了網上的一些方案來使用,可是畢竟你們都是根據本身的需求來進行項目的重構的,若是本方案不符合你的要求,建議你們仍是要根據本身的需求進行定製化的修改。這裏只是跟你們分享一下個人方案。後續我會將代碼發到github上供後來者參考。有什麼問題你們能夠發郵件討論,我會及時回覆。 Mail:Shuai.XUE@supinfo.comgit

Demo

下面是github上的項目地址,供你們參考: vue-multipagegithub

這個腳手架在原有的基礎上,加入了更多地服務:web

  • mock服務,能控制到模塊級別
  • 使用axios封裝了ajax的基礎get,post方法可供調用
  • 加入了vuex,並進行模塊拆分
  • 優化了目錄結構,接口信息統一配置

具體的能夠看項目的代碼,若是不符合須要,能夠修改,也但願你們可以指出不足的地方。這裏只是給你們提供了一種方案和思路,適合本身的纔是最好的。ajax

相關文章
相關標籤/搜索