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

About the router-view method of routing in vue2.0 (detailed tutorial)

亚连
Release: 2018-06-01 09:28:12
Original
2155 people have browsed it

Below I will share with you a solution to the problem that vue2.0 routing does not display router-view. It has a good reference value and I hope it will be helpful to everyone.

Today I learned the router-view of vue2.0, and there were countless errors. I don’t know which master wrote router-view. The configured parameters were not routers, but routes =_=||

This is the main.js that took a whole morning to complete, and there are reminders from colleagues on the Internet:

import Vue from 'vue';
import VueRouter from 'vue-router';
import App from './App';
import goods from './components/goods/goods';

Vue.config.productionTip = false;

Vue.use(VueRouter);

const routes = [
 {path: '/goods', component: goods}
];

const router = new VueRouter({
 routes
});
/* eslint-disable */
const app = new Vue({
 router,
 render: h => h(App)
}).$mount('#app');
//默认跳转到 '/goods'
router.push('/goods');
Copy after login

Here/* eslint-disable */ is the eslint code check. If you don’t add this, an error will be reported that the app is not used.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

JQuery selects the selected value method of the select component

$set and array update method in vue.js_ vue.js

Vue and vue-i18n are combined to implement multi-language switching method of background data

The above is the detailed content of About the router-view method of routing in vue2.0 (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
ie
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!