vue学习笔记——使用vue-router进行页面跳转

第一步:配置跳转页面的组件
vue学习笔记——使用vue-router进行页面跳转_第1张图片
第二步:配置路由
创建router目录并创建index.js文件

import Vue from 'vue'
import VueRouter from "vue-router";
import Context from "../components/Context";
import Main from "../components/Main";

//安装路由
Vue.use(VueRouter);

//配置导出路由
export default new VueRouter({
  routes: [
    {
      //路由路径
      path: '/context',
      name: 'context',
      //跳转的组件
      component: Context
    },
    {
      //路由路径
      path: '/main',
      name: 'context',
      //跳转的组件
      component: Main
    }
  ]
});

第三步:在main.js中导入路由

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'//自动扫描里面的路由配置

Vue.config.productionTip = false


new Vue({
  el: '#app',
  //配置路由
  router,
  components: { App },
  template: ''
})

第四步:在App.vue中添加跳转路径

<template>
  <div id="app">
    <router-link to="/main">首页</router-link>
    <router-link to="/context">内容页</router-link>
    <router-view></router-view>
  </div>
</template>

<script>
import Context from './components/Context'

export default {
  name: 'App',
  components: {
    Context
  }
}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

实现效果
vue学习笔记——使用vue-router进行页面跳转_第2张图片

你可能感兴趣的:(vue学习笔记——使用vue-router进行页面跳转)