博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vuecli2多页面 实测成功
阅读量:5962 次
发布时间:2019-06-19

本文共 2021 字,大约阅读时间需要 6 分钟。

仿照vuecli生成的index.html    及src文件夹下面的main.js,App.vue   3个文件在复制一次(位置不变)

例如

建立newpage.html 复制index.html的内容 (修改div的id为newpage) 

 

建立Newpage.vue复制App.vue的内容

修改id为newpage

name:'Newpage'

 

 

建立newpage.js复制main.js的内容(

修改import App from './App'    变为  import Newpage  from'./Newpage.vue'     ==>.vue不能少

修改 new Vue  里面的el为#newpage   

components:
{ Newpage},
template: '
<Newpage/>'

)   

修改config/index.js   

找到

index: path.resolve(__dirname, '../dist/index.html'),
下面加上
newpage: path.resolve(__dirname, '../dist/newpage.html'),

 

修改build/webpack.base.conf.js

module.exports = {
context: path.resolve(__dirname, '../'),
entry: {
  app: './src/main.js',
  
newpage:'./src/newpage.js'
},

 

修改build/webpack.dev.conf.js

 

new HtmlWebpackPlugin({
  filename: 'index.html',
  template: 'index.html',
  inject: true
}),
新加下面的
new HtmlWebpackPlugin({
  filename: '
newpage.html',
  template: '
newpage.html',
  inject: true,
  chunks:['
newpage']
}),

 

修改build/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'
}),
新加下面的
new HtmlWebpackPlugin({
  filename: config.build.
newpage,
  template: '
newpage.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',
  chunks: ['manifest','vendor','
newpage']
}),

 

因为是临时才知道是多页面,整个项目页面已完成  要跳转的话就是在这个新加的Newpage.vue页面里面加入钩子函数进行路由跳转    我的入口只有2个  就只需要加一个页面    以此例推

然后npm run build打包  完事

参考https://blog.csdn.net/cookysurongbin/article/details/79107706

转载于:https://www.cnblogs.com/webxu/p/10175556.html

你可能感兴趣的文章
双活数据中心建设之光大实践
查看>>
张晓辉:大众点评的分布式架构是怎样炼成的
查看>>
张军-大数据的理解与分布式进化计算方法
查看>>
关于Hibernate 查询oracle 字段为Date类型
查看>>
深入学习Java虚拟机之——垃圾收集算法与垃圾收集器
查看>>
android反编译之获得java源代码
查看>>
优盘驱动制作
查看>>
(分享)笔记C#基础知识
查看>>
resin
查看>>
PHP开发工具ZendStudio10
查看>>
wsl搭建php环境请求超时的问题解决方案
查看>>
spring基础
查看>>
微信用户名乱码问题
查看>>
dubbo spi(续)
查看>>
dubbo remoting(2)
查看>>
maya pyside 多个窗口实例 报错 解决
查看>>
关于文件上传请求第一次为post,后面为get的问题
查看>>
【Qt笔记】QDialog--模态和非模态
查看>>
nginx 0.8.54/1.0.0 在cygwin环境下的编译(包括 nginx_mod_h264
查看>>
PowerDesigner生成Excel版本的数据库文件
查看>>