UNPKG

@zouxin/vue-cli-plugin-template

Version:

vue-cli 3 plugin to add @zouxin/vue-template | @zouxin/vue-typescript-template

13 lines (10 loc) 311 B
export function routerBeforeEachFunc (to, from, next) { // 这里可以做页面拦截,比如做权限处理 // ... next() } export function routerAfterEachFunc (to) { const prefix = 'vue-template' const { title } = to.meta document.title = title ? `${prefix} - ${title}` : prefix }