码迷,mamicode.com
首页 > 其他好文 > 详细

vue路由总结

时间:2019-08-28 12:56:52      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:style   ons   路径   配置路由   from   引入   outer   history   功能   

基本用法及模板

【首先,安装路由的包】:npm install vue-router --save

【main.js】页面

import Vue from 'vue'
import App from './App'
import VueRouter from 'vue-router'  /* 1、引入路由 */

/* 4、引入需要路由跳转的相关组件页面 */
import Mans from './components/Mans.vue'   
import Users from './components/Users.vue'

Vue.config.productionTip = false 
Vue.use(VueRouter)   /*2、声明路由的使用 */

const router=new VueRouter({   /*5、配置路由,包括路径设置,组件设置 */
  routes:[
    {path:"/",component:Users}, 
    {path:"/mans",component:Mans},
  ],
  mode:"history"   /* 此行代码可以去除路径中的# */
})

new Vue({
  el: '#app',
  router,   /* 3、在实例化对象里面注册router */
  components: { App },   /* 注意这里是根组件所在处 */
  template: '<App/>'   /* 6、前往根组件处(这里根组件是App.vue)设置路由跳转 */
})


【App.vue】页面
<template>
  <div id="app">
    <!-- 使用router-link添加点击跳转功能 --> 
    <p><router-link to="/">跳转到Users页面</router-link></p>
    <p><router-link to="/mans">跳转到Mans页面</router-link></p>

    <!-- 6、根组件中使用router-view调用路由,类似于react路由的this.props.children -->
      <router-view></router-view> 
    
  </div>
</template>

<script>
  export default {
    name: 'App',
    data(){
      return {
        
      }
    },
    methods:{
      
    }
  }
</script>

<style></style>

vue路由总结

标签:style   ons   路径   配置路由   from   引入   outer   history   功能   

原文地址:https://www.cnblogs.com/huihuihero/p/11423346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!