Now I will share with you a project created by vue-cli and the implementation method of configuring multiple pages. It has a good reference value and I hope it will be helpful to everyone.
The command line tool vue-cli officially provided by vue can quickly build a single-page application. The default page entry is index.html. So, if we need multiple pages, how to configure it is actually not complicated.
Assume that the page to be created is rule. The following uses rule as an example.
Create a new html page
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <title></title> </head> <body> <span style="color:#000000;"><p id="rule"></p></span> <!-- built files will be auto injected --> </body> </html>
Create entry files Rule.vue and rule.js, modeled on App.vue and main. js
<template> <p id="rule"> <router-view></router-view> </p> </template> <script> export default { name: 'lottery', data() { return { } }, mounted: function() { this.$router.replace({ path:'/rule' }); }, } </script> <style lang="less"> body{ margin:0; padding:0; } </style>
rule.js
import Vue from 'vue' import Rule from './Rule.vue' import router from './router' import $ from 'jquery' //import vConsole from 'vconsole' import fastclick from 'fastclick' Vue.config.productionTip = false fastclick.attach(document.body) Vue.config.productionTip = false; /* eslint-disable no-new */ new Vue({ el: '#rule', router, template: '<Rule/>', components: { Rule }, })
Modify config/index.js
build adds the rule address, which is the address and name of rule.html generated after compilation
build: { // Template for index.html index: path.resolve(__dirname, '../dist/index.php'), rule: path.resolve(__dirname, '../dist/rule.php'), …… }
rule: path.resolve(__dirname, '../dist/rule.php') means that after compilation, it is placed in the dist file. The compiled file name of rule.html is rule.php
Modify build/webpack.base.conf.js
Configure entry
entry: { app: './src/main.js', rule: './src/rule.js' },
Modify build/webpack.dev.conf .js
In plugins add
new HtmlWebpackPlugin({ filename: 'rule.html', template: 'rule.html', inject: true, chunks:['rule'] }),
Modify build/webpack.prod.conf.js
Add in plugins
new HtmlWebpackPlugin({ filename: config.build.rule, template: 'rule.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','rule'] }),
All of the above
When the background address jumps to After you create a new page, since the default route configured now is public, you can configure multiple routing files yourself and reference them separately.
You can route in Rule.vue to jump to the specified route to achieve page control
mounted: function() { this.$router.replace({ path:'/rule' }); },
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
Methods to obtain DOM elements based on vue1 and vue2
nodejs mongodb aggregate cascade query operation example
JS implements the method of generating a QR code from a link and converting it into an image
The above is the detailed content of Project created by vue-cli, configure multi-page implementation method. For more information, please follow other related articles on the PHP Chinese website!