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

vue 实例化定义路由模板

时间:2018-02-08 12:16:57      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:pat   定义   component   routes   func   post   lin   vue   color   

 <div id="app">
    <router-view></router-view>
  </div>
  <template id="a">
    <div @click="link">hello</div>
  </template>
  <template id="b">
    <div>world</div>
  </template>
  const Home = Vue.extend({
    template: "#a",
    data: function() {
      return {}
    },
    methods: {
      link: function () {
        this.$router.push(‘/b‘)
      }
    }
  })
  const B = Vue.extend({
    template: "#b"
  })
  // 路由
  const routes = [
    {path:‘/‘,component:Home},
    {path:‘/b‘,component:B}
  ];
  const router = new VueRouter({
    routes
  })
  new Vue({
    el:"#app",
    router
  })

 

vue 实例化定义路由模板

标签:pat   定义   component   routes   func   post   lin   vue   color   

原文地址:https://www.cnblogs.com/kelly07/p/8430643.html

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