首頁  >  文章  >  web前端  >  在vue-cli中使用路由的方法

在vue-cli中使用路由的方法

小云云
小云云原創
2018-05-15 10:25:401964瀏覽

本文主要和大家介紹在vue-cli中使用路由的方法,給大家做個參考,希望能幫助大家正確在vue-cli中使用路由。

1.首先npm中是否有vue-router

#一般在vue-cli的時候就已經下載好了依賴套件了

2.使用vue的話正常的需要涉及這幾個檔案

demo/src/router/index.js

import Vue from 'vue'

import Router from 'vue-router'

import Hello from '../components/Hello'//首页

import Test from '../components/test'//需要跳转的页面 给组件重新命名

 

Vue.use(Router)

 

export default new Router({

 routes: [

  {//首页

   path: '/',

   name: 'Hello',

   component: Hello

  },

  {//需要跳转的页面

    path:'/test',

    name:'test',

    component:Test//组件名字

  }

 ]

})

demo/src/app.vue

<template>

 <p id="app">

  <img src="./assets/logo.png">

  <p>

  <router-link to="/home">home</router-link>//跳转首页

  <router-link to="/test">test</router-link>//跳转新页面

  </p>

  <router-view></router-view>//页面渲染放置的部分

 </p>

 

</template>

 

<script>

export default {

 name: &#39;app&#39;

}

</script>

 

<style>

#app {

 font-family: &#39;Avenir&#39;, Helvetica, Arial, sans-serif;

 -webkit-font-smoothing: antialiased;

 -moz-osx-font-smoothing: grayscale;

 text-align: center;

 color: #2c3e50;

 margin-top: 60px;

}

</style>

demo/src/main.js

import Vue from &#39;vue&#39;

import App from &#39;./App&#39;

import router from &#39;./router&#39;

 

Vue.config.productionTip = false

 

/* eslint-disable no-new */

new Vue({

 el: &#39;#app&#39;,

 router,

 template: &#39;<App/>&#39;,

 components: { App }

}).$mount(&#39;#app&#39;)//实例挂载到元素中

兩個頁面的元件

這樣的話,基本的路由設定就好了,可以按照正常的npm run dev運行這個專案了

另外還有嵌套自訂多種路由

#具體的路由內容可以查看:https://router.vuejs.org/zh -cn/installation.html

相關推薦:

使用路由延遲載入Angular模組實例詳解

angular中使用路由與$location切換視圖_AngularJS

Vue-Router2實作路由功能實例講解

以上是在vue-cli中使用路由的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn