@goliapkg/sentori-vue
v1.2.0
Published
Vue 3 adapter for Sentori — plugin, errorHandler hook, Vue Router auto-trace navigation, <SentoriErrorBoundary>.
Maintainers
Readme
@goliapkg/sentori-vue
Vue 3 SDK for Sentori. Installs as a plugin; the global error handler captures component-tree errors automatically.
Install
bun add @goliapkg/sentori-vue @goliapkg/sentori-javascriptUse
// main.ts
import { createApp } from 'vue'
import { sentoriVue } from '@goliapkg/sentori-vue'
import App from './App.vue'
createApp(App)
.use(sentoriVue, {
token: 'st_pk_…',
release: '[email protected]',
environment: 'prod',
})
.mount('#app')For manual capture:
import { sentori } from '@goliapkg/sentori-javascript'
sentori.captureException(err)→ Full guide: sentori.golia.jp/docs/sdk-vue → Sentry drop-in: sentori.golia.jp/docs/sentry-compat
License
Dual-licensed under Apache-2.0 OR MIT.
