咱们看一下官网给的 multi-page 的配置:须要在 vue.config.js
配置 pages
,示例以下:html
pages: { index: { // page 的入口 entry: 'src/index/main.js', // 模板来源 template: 'public/index.html', // 在 dist/index.html 的输出 filename: 'index.html', // 当使用 title 选项时, // template 中的 title 标签须要是 <title><%= htmlWebpackPlugin.options.title %></title> title: 'Index Page', // 在这个页面中包含的块,默认状况下会包含 // 提取出来的通用 chunk 和 vendor chunk。 chunks: ['chunk-vendors', 'chunk-common', 'index'] }, // 当使用只有入口的字符串格式时, // 模板会被推导为 `public/subpage.html` // 而且若是找不到的话,就回退到 `public/index.html`。 // 输出文件名会被推导为 `subpage.html`。 subpage: 'src/subpage/main.js' }
每个页面中就是一个对象,包含了以下配置:vue
首先,咱们须要设计一下 src
目录下面放置 multi-page 的文件:node
看了不少多页项目,有 2 个方案:webpack
pages
文件夹views
或者其余名字的文件夹你们自行选择或者定义就行了,这里咱们选 pages
web
咱们再看一下里面的文件:api
main.js
或者 index.js
index.html
src pages page1 index.html main.js App.vue page2 index.html main.js App.vue
下面就是经过函数来生成 pages
的配置:数组
第一步:找到入口文件app
能够用 glob
函数
const glob = require('glob')
pages
目录的位置,能够用相对路径
,也能够用绝对路径
:ui
const path = require('path') const PAGES_PATH = path.resolve(__dirname, './src/pages')
定义一个 pages 对象:
const pages = {}
glob.sync(PAGES_PATH + '/*/main.js').forEach(filepath => { // ... })
这里就是去设置对应几个 key 了,不少项目基本可能是经过
/ 分隔符来对字符串进行数组话,而后简单地获取
可是熟悉 node.js path
模块的会以下处理:
const pageName = path.basename(path.dirname(filepath))
往 pages 里面循环设置:
pages[pageName] = { entry: filepath, filename: `${pageName}.html`, chunks: ['chunk-vendors', 'chunk-common', pageName] }
关于 template
稍微复杂一点,咱们须要作判断,若是存在就用自定义的,若是不存在就用通用的
const templatePath = path.dirname(filepath) + '/index.html'
而后经过 fs.existsSync 会判断自定义文件是否存在:
if (!fs.existsSync(templatePath)) { // 入口若是不配置直接使用 templatePath = 'public/index.html' }
固然后面咱们分享了源码
以后,你就会发现你作了无用功
下面咱们看一下源码实现部分:
每一个版本的 cli-service 多有微小的改动
cli-service/lib/config/app.js
文件
定义了一个变量 multiPageConfig
获取 vue.config.js 取出来的 pages
:
const multiPageConfig = options.pages
清空一次 entry
webpackConfig.entryPoints.clear()
经过 Object.keys
获取 keys,而后 forEach
循环
const pages = Object.keys(multiPageConfig) pages.forEach(name => { })
循环内部:
先定义要用的变量,从 multiPageConfig[name] 的每个对象取:
const { title, entry, template = `public/${name}.html`, filename = `${name}.html`, chunks } = normalizePageConfig(multiPageConfig[name])
normalizePageConfig 函数以下:
处理 subpage: 'src/subpage/main.js' 的状况
const normalizePageConfig = c => typeof c === 'string' ? { entry: c } : c
设置 entry
webpackConfig.entry(name).add(api.resolve(entry))
hasDedicatedTemplate 是判断
用户传递的多页配置自定义模板路径是否存在:
const fs = require('fs') const hasDedicatedTemplate = fs.existsSync(api.resolve(template))
templatePath 的处理细节:
htmlPath
路径是:
/Users/ */public/index.html
const htmlPath = api.resolve('public/index.html')
defaultHtmlPath
路径是:
/Users/ */node_modules/@vue/cli-service/lib/config/index-default.html
const defaultHtmlPath = path.resolve(__dirname, 'index-default.html')
若是:
一、用户自定义的模板存在就直接给 templatePath
二、若是不存在,先取 public/index.html,再不行就取 node_modules 里面的
const templatePath = hasDedicatedTemplate ? template : fs.existsSync(htmlPath) ? htmlPath : defaultHtmlPath
最终经过 html-webpack-plugin
插件来生成指定名字
的 html 文件到指定目录
:
一、指定目录:
由 vue.config.js
中的 outputDir
来决定
const outputDir = api.resolve(options.outputDir)
二、生成 webpack config 关于 html-webpack-plugin 的部分:
const HTMLPlugin = require('html-webpack-plugin') webpackConfig .plugin(`html-${name}`) .use(HTMLPlugin, [pageHtmlOptions])
pageHtmlOptions 的处理细节:
传递给 html-webpack-plugin 插件的参数,这里默认会设置 chunks
的,因此上面实战中配置也是无用功
const pageHtmlOptions = Object.assign({}, htmlOptions, { chunks: chunks || ['chunk-vendors', 'chunk-common', name], template: templatePath, filename: ensureRelative(outputDir, filename), title })