码迷,mamicode.com
首页 > Web开发 > 详细

【vuejs小项目——vuejs2.0版本】单页面搭建

时间:2016-12-14 19:18:32      阅读:478      评论:0      收藏:0      [点我收藏+]

标签:出错   children   route   color   ted   路由   path   nts   vue   

http://router.vuejs.org/zh-cn/essentials/nested-routes.html

使用嵌套路由开发,这里会出错主要把Vue.use(VueRouter);要进行引用

main.js

import Vue from ‘vue‘;
import VueRouter from ‘vue-router‘;
Vue.use(VueRouter);

import App from ‘./App‘;
import goods from ‘./components/goods/goods‘;
import ratings from ‘./components/ratings/ratings‘;
import seller from ‘./components/seller/seller‘;


const router = new VueRouter({
    routes:[
        {
            path:‘‘,component:App,
            children: [
                {
                    path:‘‘,
                    component:goods
                },
                {
                    path:‘goods‘,
                    component:goods
                },
                {
                    path:‘ratings‘,
                    component:ratings
                },
                {
                    path:‘seller‘,
                    component:seller
                }
            ]
        }
    ]
})

const app = new Vue({
    router
}).$mount(‘#app‘);

 使用router.go(‘/goods‘)会造成页面不断刷新

2.0版本下使用router.push(‘/goods‘);

【vuejs小项目——vuejs2.0版本】单页面搭建

标签:出错   children   route   color   ted   路由   path   nts   vue   

原文地址:http://www.cnblogs.com/fry-img/p/6180231.html

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