美文网首页程序员让前端飞Vue
vue 配置多页面应用的示例代码

vue 配置多页面应用的示例代码

作者: 88b61f4ab233 | 来源:发表于2019-03-17 15:00 被阅读9次

前言: 本文基于vue 2.5.2, webpack 3.6.0(配置多页面原理类似,实现方法各有千秋,可根据需要进行定制化)

vue 是单页面应用。但是在做大型项目时,单页面往往无法满足我们的需求,因此需要配置多页面应用。

  1. 新建 vue 项目
    vue init webpack vue_multiple_test
    cd vue_multiple_test
    npm install

  2. 安装 glob
    npm i glob --save-dev
    glob 模块用于查找符合要求的文件

  3. 目标结构目录
    .
    ├── README.md
    ├── build
    │ ├── build.js
    │ ├── check-versions.js
    │ ├── logo.png
    │ ├── utils.js
    │ ├── vue-loader.conf.js
    │ ├── webpack.base.conf.js
    │ ├── webpack.dev.conf.js
    │ └── webpack.prod.conf.js
    ├── config
    │ ├── dev.env.js
    │ ├── index.js
    │ └── prod.env.js
    ├── generatePage.sh
    ├── index.html
    ├── package-lock.json
    ├── package.json
    ├── src
    │ ├── assets
    │ │ └── logo.png
    │ └── pages
    │ ├── page1
    │ │ ├── App.vue
    │ │ ├── index.html
    │ │ └── index.js
    │ └── page2
    │ ├── App.vue
    │ ├── index.html
    │ └── index.js
    └── static
    其中,pages文件夹用于放置页面。 page1 和 page2用于分别放置不同页面,且默认均包含三个文档: App.vue, index.html, index.js, 这样在多人协作时,可以更为清晰地明确每个文件的含义。除此之外,此文件也可配置路由。

  4. utils 增加下述代码:
    const glob = require('glob')
    const PAGE_PATH = path.resolve(__dirname, '../src/pages')
    const HtmlWebpackPlugin = require('html-webpack-plugin')
    其中:PAGE_PATH 为所有页面所在的文件夹路径,指向 pages文件夹。

exports.entries = function () {
/用于匹配 pages 下一级文件夹中的 index.js 文件 /
var entryFiles = glob.sync(PAGE_PATH + '/
/index.js')
var map = {}
entryFiles.forEach((filePath) => {
/
下述两句代码用于取出 pages 下一级文件夹的名称 /
var entryPath = path.dirname(filePath)
var filename = entryPath.substring(entryPath.lastIndexOf('/') + 1)
/
生成对应的键值对 */
map[filename] = filePath
})
return map
}
该方法用于生成多页面的入口对象,例如本例,获得的入口对象如下:

{
page1: '/Users/work/learn/vue/vue_multiple_test/src/pages/page1/index.js',
page2: '/Users/work/learn/vue/vue_multiple_test/src/pages/page2/index.js',
}
其中:key 为当前页面的文件夹名称, value 为当前页面的入口文件名称

exports.htmlPlugin = function () {
let entryHtml = glob.sync(PAGE_PATH + '/*/index.html')
let arr = []
entryHtml.forEach((filePath) => {
var entryPath = path.dirname(filePath)
var filename = entryPath.substring(entryPath.lastIndexOf('/') + 1)
let conf = {
template: filePath,
filename: filename + /index.html,
chunks: ['manifest', 'vendor', filename],
inject: true
}
if (process.env.NODE_ENV === 'production') {
let productionConfig = {
minify: {
removeComments: true, // 移除注释
collapseWhitespace: true, // 删除空白符和换行符
removeAttributeQuotes: true // 移除属性引号
},
chunksSortMode: 'dependency' // 对引入的chunk模块进行排序
}
conf = {...conf, ...productionConfig} //合并基础配置和生产环境专属配置
}
arr.push(new HtmlWebpackPlugin(conf))
})
return arr
}

  1. webpack.base.conf.js修改入口如下:
    entry: utils.entries()
  2. webpack.dev.conf.js
    在 devWebpackConfig 中的 plugins数组后面拼接上上面新写的htmlPlugin:

plugins: [
new webpack.DefinePlugin({
'process.env': require('../config/dev.env')
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
new webpack.NoEmitOnErrorsPlugin(),
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.dev.assetsSubDirectory,
ignore: ['.*']
}
])
].concat(utils.htmlPlugin())
并删除下述代码:

new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true
})

  1. webpack.prod.conf.js
    做 webpack.dev.conf.js 中的类似处理:

plugins: [
new webpack.DefinePlugin({
'process.env': env
}),
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false
}
},
sourceMap: config.build.productionSourceMap,
parallel: true
}),
new ExtractTextPlugin({
filename: utils.assetsPath('css/[name].[contenthash].css'),
allChunks: true,
}),
new OptimizeCSSPlugin({
cssProcessorOptions: config.build.productionSourceMap
? { safe: true, map: { inline: false } }
: { safe: true }
}),
new webpack.HashedModuleIdsPlugin(),
new webpack.optimize.ModuleConcatenationPlugin(),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks (module) {
return (
module.resource &&
/.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, '../node_modules')
) === 0
)
}
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
minChunks: Infinity
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'app',
async: 'vendor-async',
children: true,
minChunks: 3
}),
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.build.assetsSubDirectory,
ignore: ['.*']
}
])
].concat(utils.htmlPlugin())
并删除下述代码:

new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
},
chunksSortMode: 'dependency'
})

  1. 构建结果
    【dev】开发环境下,执行 npm run dev 访问:

http://localhost:8080/page1/index.html
http://localhost:8080/page2/index.html

即为访问不同的页面

【production】生产环境下,执行 npm run build, 生成的文件目录如下所示:

│ ├── dist
│ ├── page1
│ │ └── index.html
│ ├── page2
│ │ └── index.html
│ └── static
│ ├── css
│ │ ├── page1.86a4513a3e04c0dcb73e6d6aea4580e4.css
│ │ ├── page1.86a4513a3e04c0dcb73e6d6aea4580e4.css.map
│ │ ├── page2.86a4513a3e04c0dcb73e6d6aea4580e4.css
│ │ └── page2.86a4513a3e04c0dcb73e6d6aea4580e4.css.map
│ └── js
│ ├── manifest.0c1cd46d93b12dcd0191.js
│ ├── manifest.0c1cd46d93b12dcd0191.js.map
│ ├── page1.e2997955f3b0f2090b7a.js
│ ├── page1.e2997955f3b0f2090b7a.js.map
│ ├── page2.4d41f3b684a56847f057.js
│ ├── page2.4d41f3b684a56847f057.js.map
│ ├── vendor.bb335a033c3b9e5d296a.js
│ └── vendor.bb335a033c3b9e5d296a.js.map

8.【懒人福利】使用shell脚本自动构建基础页面
在项目文件下新建shell脚本generatePage.sh, 并在脚本中写入下述代码:

!/bin/bash

打开 pages 文件夹,并创建文件

cd src/pages
for file in (ls) do if [file == 1 ];then echo1' 文件已存在, 请使用其他名字'
exit
fi
done
mkdir 1 cd1

生成 index.html

echo "" > index.html
echo '<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title></title>
</head>
<body>
<div id="app"></div>

</body>
</html>' > index.html

生成 App.vue

echo "" > App.vue
echo '<template>
<div id="app">
</div>
</template>

<script>
export default {
name: "App"
}
</script>

<style>

app {}

</style>' > App.vue

生成 index.js

echo "" > index.js
echo "import Vue from 'vue'
import App from './App'

Vue.config.productionTip = false

/* eslint-disable no-new */
new Vue({
el: '#app',
components: { App },
template: '<App/>'
})" > index.js
之后在项目路径下输入下述命令:

bash generatePage.sh page4
即可在pages文件夹下生成一个名为page4的新页面。还可以通过自定义shell脚本的内容写入路由等,以实现定制需求。

最后

为了帮助大家让学习变得轻松、高效,给大家免费分享一大批资料,帮助大家在成为全栈工程师,乃至架构师的路上披荆斩棘。在这里给大家推荐一个前端全栈学习交流圈:866109386.欢迎大家进群交流讨论,学习交流,共同进步。

当真正开始学习的时候难免不知道从哪入手,导致效率低下影响继续学习的信心。

但最重要的是不知道哪些技术需要重点掌握,学习时频繁踩坑,最终浪费大量时间,所以有有效资源还是很有必要的。

最后祝福所有遇到瓶疾且不知道怎么办的前端程序员们,祝福大家在往后的工作与面试中一切顺利。


.png

相关文章

  • vue 配置多页面应用的示例代码

    前言: 本文基于vue 2.5.2, webpack 3.6.0(配置多页面原理类似,实现方法各有千秋,可根据需要...

  • vue多页应用

    vue如何将单页面改造成多页面应用 vue单页多页的开发环境配置+vue的开发思路

  • vue多页面应用配置

    目录结构 使用vue-cli 3.0构建 主要代码 src/page/*/inedx.html src/page/...

  • Vue多页面应用配置

    最近由于工作驱动,项目包含pc端及mobile端,pc端和mobile端核心功能一致,最大的不同是UI,为了减少维...

  • Vue CLI3开发多页面应用

    简要说明 使用vue脚手架创建的vue项目均为单页面应用。但是有时候我们也需要多页面应用,那该如何使用cli来配置...

  • vue多页面应用 附代码

    github网址:https://github.com/zhaimengli/vue-cli- 我们主要针对的是s...

  • 读取文件编码格式mime

    代码示例之原生js 代码示例之vue 插件安装 封装代码 应用封装代码 在线获取文件编码的地址:https://g...

  • 使用Vue-CLI怎么实现多页分目录打包

    背景 使用VUE搭建多页面应用,实现公司共享页面的需求。 设计思想 所有系统都在同一目录下,配置多入口多出口。各系...

  • 基于vue多入口项目升级webpack4实践

    项目背景简介 多页面应用,每个页面独立entry,单个页面内使用vue-router 基于vue,使用vue-lo...

  • 使用webpack配置多页面应用

    多页面应用 说到多页面应用,我们先来熟悉一下相反的单页面应用,提起单页面应用大家一定不会陌生,像vue、react...

网友评论

    本文标题:vue 配置多页面应用的示例代码

    本文链接:https://www.haomeiwen.com/subject/nkdumqtx.html