为什么vue-router中的钩子函数没有触发?

这是我的main.js

import Vue from 'vue';
import VueRouter from 'vue-router';
import App from './App';
import Index from './views/index';

Vue.use(VueRouter);

let app = Vue.extend({
    components: { App }
});

let router = new VueRouter({
    hashbang: false
});

router.map({
    '/home': {
        name: 'home',
        component: Index
    }
});

router.start(App, '#app');

index.vue

<template>
    <p>im index</p>
</template>

<script>
export default {
    route: {
        active(transition) {
            console.log('yo im active');
            transition.next();
        },
        deactive(transition) {
            console.log('yo im deactive');
            transition.next();
        }
    }
}
</script>

<style lang="css">
</style>

切换路由的时候钩子函数没有触发,是哪里用错了吗?

阅读 8.6k
1 个回答

亲,是activate,deactivate,不是active,deactive

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题