esm.js 523 B

123456789101112
  1. import VueRouter from '../router'
  2. export const version = '__VERSION__'
  3. export { isNavigationFailure, NavigationFailureType } from '../util/errors'
  4. export { START as START_LOCATION } from '../util/route'
  5. export { default as RouterLink } from '../components/link'
  6. export { default as RouterView } from '../components/view'
  7. // we can't add the other composables here because people could still be using an older version of vue and that would
  8. // create a compilation error trying to import from vue
  9. export default VueRouter