vue-router

1.安装
//在项目里安装vue-router 保存配置到dev配置文件里
cnpm install vue-router --save-dev
2.使用
  1. 在初始的webpack项目中,创建组件
//路径
/components/main.vue

<template>
  <html>
    <div>首页</div>
  </html>
</template>

<script>
  /*组件名字*/
    export default {
        name: "main"
    }
</script>
<!--scoped:style只在本组件生效-->
<style scoped>

</style>
/components/content.vue
<template>
  <html>
    <div>内容</div>
  </html>

</template>

<script>
    export default {
        name: "content"
    }
</script>

<style scoped>

</style>

  1. 在router下建立index.js配置相关路由
/*导入router*/
import Vue from 'vue';
import vueRouter from 'vue-router';
import content from "../components/content";
import main from "../components/main";

/*得先导入vue,开启router*/
Vue.use(vueRouter);

/*配置导出路由,所有路由可以放在这,在main中导入这个
* 一般默认路由配置在router/index.js中*/
export default new vueRouter({
  routes: [{
    /*组件路径,组件名字,组件*/
    path: '/content',
    name: 'content',
    component: content
  },{
    path: '/main',
    name: 'main',
    component: main
  }]
});

  1. main.js中导入路由

import Vue from 'vue'
import App from './App'
/*导入配置的路由*/
import router from './router'

Vue.config.productionTip = false

/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  components: { App },
  template: '<App/>'
})

  1. APP.vue组件中配置
<template>
  <div id="app">
    <router-link to="main">首页</router-link>
    <router-link to="content">内容</router-link>
    <!--展示组件内容-->
    <router-view/>
  </div>
</template>

<script>
export default {
  name: 'App'
}
</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>

5 . 命令行下:npm run dev

  • 修改组件,热部署,自动部署
  • 组件变化,只修改组件即可,模块化管理
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值