Vue-cli配置多页面

Vue-cli默认是单页面的,如果要开发多页面应该怎么办?
Vue-cli 多页面配置
单页应用(SPA)往往只含有一个主入口文件与index.html,页面间切换通过局部刷新资源来完成。而在多页应用中,我们会为每个html文档文件都指定好一个JS入口,这样一来当页面跳转时用户会获得一个新的html文档,整个页面会重新加载。

vue-cli可以配置vue.config.js的pages选项,实现多页面应用开发

module.exports = {
  pages: {
    index: {
      // page 的入口(必选项,除此之外就是可选项)
      entry: "src/index/main.js",
      // 模板来源
      template: "public/index.html",
      // 在 dist/index.html 的输出
      filename: "index.html",
      // 当使用 title 选项时,
      // template 中的 title 标签需要是 <%= htmlWebpackPlugin.options.title %>
      title: "Index Page",
      // 在这个页面中包含的块,默认情况下会包含
      // 提取出来的通用 chunk 和 vendor chunk。
      chunks: ["chunk-vendors", "chunk-common", "index"],
    },
    // 当使用只有入口的字符串格式时,
    // 模板会被推导为 `public/subpage.html`
    // 并且如果找不到的话,就回退到 `public/index.h

你可能感兴趣的:(vue)