UNPKG

vue-cli-plugin-templates

Version:

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

13 lines (10 loc) 299 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 }