UNPKG

@bye_past/vue-keep

Version:

缓存你的页面组件, 使得可以比手机APP更好的体验效果

31 lines (26 loc) 453 B
const replaceState = 'replaceState'; const pushState = 'pushState'; const push = 'push'; const replace = 'replace'; const forward = 'forward'; const go = 'go'; const back = 'back'; export const POPSTATE = 'popstate'; export const RouterJumpMethods = { push, replace, go, forward, back, }; export const HistoryJumpMethods = { replaceState, pushState, go, forward, back }; export const NavigationDirection = { back, forward };