2.8.0 • Published 10 months ago

@bugsnag/vue-router-performance v2.8.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

@bugsnag/vue-router-performance

A vue router integration for BugSnag performance

Usage

import BugsnagPerformance from '@bugsnag/browser-performance'
import { VueRouterRoutingProvider } from '@bugsnag/vue-router-performance'
import { createRouter, createWebHistory } from 'vue-router'

const base = '/my-app'

const router = createRouter({
  history: createWebHistory(base),
  routes: [
    {
      path: '/',
      name: 'home',
      component: HomeView
    },
    {
      path: '/contacts/:contactId',
      name: 'contact',
      component: () => import('./views/ContactView.vue')
    }
  ]
})


BugsnagPerformance.start({
  apiKey,
  routingProvider: new VueRouterRoutingProvider(router, base)
})

const app = createApp(App)

app.use(router)

app.mount('#app')
2.8.0

10 months ago

2.7.1

11 months ago

2.4.0

1 year ago

2.3.0-alpha.0

1 year ago

2.2.0

1 year ago

2.1.0

2 years ago

1.2.1-alpha.4

2 years ago

2.0.0

2 years ago

1.2.1-alpha.3

2 years ago

1.2.1-alpha.2

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago