index.js 264 B

1234567891011
  1. import routerReady from '@/common/router-ready'
  2. routerReady((router) => {
  3. router.beforeEach((routeTo, routeFrom, next) => {
  4. if (routeTo.name === 'sd-webflow') {
  5. // @ts-ignore
  6. window.xmWebflowStart = new Date().valueOf()
  7. }
  8. next()
  9. })
  10. })