官方提供的項目生成工具vue-cli沒有對多頁面webApp的支持,可是在實際的項目中,咱們須要這樣的腳手架,參考了不少大牛的方法,這裏提供了一種個人單頁面腳手架轉換爲多頁面腳手架的方案,供你們參考。很差的地方也請你們指正。javascript
使用vue-cli生成一個你須要的單頁面項目腳手架,而後咱們就要開始咱們的改裝工程了。html
在生產環境下會分頁面打包獨有js文件,並抽取公共js,不會什麼都打包成一坨。打包後文件目錄結構也是比較清晰地。一下全部修改都在build文件夾下vue
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
}
複製代碼
// entry: {
// app: './src/main.js'
// },
entry: utils.entries(),
複製代碼
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())
複製代碼
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
下面是github上的項目地址,供你們參考: vue-multipagegithub
這個腳手架在原有的基礎上,加入了更多地服務:web
具體的能夠看項目的代碼,若是不符合須要,能夠修改,也但願你們可以指出不足的地方。這裏只是給你們提供了一種方案和思路,適合本身的纔是最好的。ajax