Home > Web Front-end > JS Tutorial > body text

Project created by vue-cli, configure multi-page implementation method

亚连
Release: 2018-05-30 10:30:43
Original
1940 people have browsed it

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



	
		
		
		
		
		
		
		
	
	
		

Copy after login

Create entry files Rule.vue and rule.js, modeled on App.vue and main. js



Copy after login

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: '',
 components: { Rule },
})
Copy after login

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'),
  ……
 }
Copy after login

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'
 },
Copy after login

Modify build/webpack.dev.conf .js

In plugins add

new HtmlWebpackPlugin({ 
   filename: 'rule.html', 
   template: 'rule.html', 
   inject: true, 
   chunks:['rule'] 
  }),
Copy after login

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']
  }),
Copy after login

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'
	});
},
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!