2.4.0 • Published 1 month ago

@bugsnag/vue-router-performance v2.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month 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.4.0

1 month ago

2.3.0-alpha.0

2 months ago

2.2.0

3 months ago

2.1.0

5 months ago

1.2.1-alpha.4

6 months ago

2.0.0

6 months ago

1.2.1-alpha.3

6 months ago

1.2.1-alpha.2

6 months ago

1.2.0

7 months ago

1.1.0

8 months ago