<a href="https://github.com/otavio-paganotti/honeybadger-vue3-composition-api/blob/main/LICENSE"><img src="https://img.shields.io/github/license/otavio-paganotti/honeybadger-vue3-composition-api" alt="License" /></a>
npm install honeybadger-vue3-composition-apiUse Honeybadger with Composition API features in your Vue 3 Application.
This solution is based on original Honeybadger Vue 3 support. Check it out here.
``BASHFor NPM
npm install honeybadger-vue3-composition-api --save
In your main.js
`javascript
import HoneybadgerVue from 'honeybadger-vue3-composition-api'
import { createApp } from 'vue'
import App from './App' //your root componentconst app = createApp(App)
const config = {
apiKey: 'project api key',
environment: 'production',
revision: 'git SHA/project version'
}
app.use(HoneybadgerVue, config)
app.mount('#app')
`In your
.vue component with Composition API`html
`Or regular
.vue with Options API`javascript
this.$honeybadger.setContext({
user_id: 123,
user_email: 'user@example.com'
});this.$honeybadger.notify(error);
``Check all docs from Honeybadger for Vue 3 Here.
Honeybadger Vue 3 Composition API is licensed under the MIT license.
See the license file for more details.