Problem description: Experimental results and discussion: 1. Create a vue-cli default project (containing only babel)2. Enter the creation file
3. Check the configuration
4. Create views folder
5. Set up APP.vueSet up as follows: <template> <div id="app"> <div id="nav"> <router-link to="/">home</router-link> | <router-link to="/about">about</router-link> </div> <router-view/> </div> </template> <style> #app { text-align: center; margin-top: 60px; } </style> 6. Configure main.jsimport Vue from 'vue' import Router from 'vue-router' import Home from './views/Home.vue' Vue.use(Router) export default new Router({ mode: 'history', base: process.env.BASE_URL, routes: [ { path: '/', name: 'home', component: Home }, { path: '/about', name: 'about', component: () => import( './views/About.vue') } ] }) 7. Operation resultsas follows: Summary of the problem: In this experiment, This is the end of this article about how to implement page jump in vue project. For more relevant content about how to implement page jump in vue project, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: HTML4.0 element default style arrangement
Table of contents Explanation of v-text on if for...
First, let me introduce the meaning of some field...
Today I want to summarize several very useful HTML...
Since Alibaba Cloud's import of custom Ubuntu...
Preface Starting from React 16, the concept of Er...
Table of contents Preface Descriptors Detailed ex...
Vue bus mechanism (bus) In addition to using vuex...
Today we are going to implement a Thunder Fighter...
Detailed Analysis of Iframe Usage <iframe frame...
This article mainly summarizes various problems o...
Table of contents 1. Basic storage of files and d...
The preparation for the final exams in the past h...
Introduction to influxDB influxDB is a distribute...
How to modify the style of the el-select componen...
What is MySQL multi-instance Simply put, MySQL mu...