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

vue-router-1-安装与基本使用

时间:2017-10-09 19:41:02      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:imp   一个   mod   基本使用   nod   标签   最新   router   安装   

npm install vue-router
import Vue from vue
import VueRouter from vue-router

Vue.use(VueRouter)
//使用最新的开发版
git clone https://github.com/vuejs/vue-router.git node_modules/vue-router
cd node_modules/vue-router
npm install
npm run build
 <div id="app">
  <!-- <router-link> 默认会被渲染成一个 `<a>` 标签 --> <router-link to="/foo">Go to Foo</router-link>    <!-- 路由匹配到的组件将渲染在这里 --> <router-view></router-view>
</div>
// 1. 定义(路由)组件,可以 import 进来
const Foo = { template: <div>foo</div> }

// 2. 定义路由
const routes = [
  { path: /foo, component: Foo },
]

// 3. 创建 router 实例,然后传 `routes` 配置
const router = new VueRouter({
  routes // (缩写)相当于 routes: routes
})

// 4. 创建和挂载根实例,通过 router 配置参数注入路由,
const app = new Vue({
  router
}).$mount(‘#app‘)

 

 

vue-router-1-安装与基本使用

标签:imp   一个   mod   基本使用   nod   标签   最新   router   安装   

原文地址:http://www.cnblogs.com/avidya/p/7642537.html

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