Docs · SDK · Vue

Install Brevwick in Vue.

Copy-paste the snippets below. Replace pk_test_demo with the public key from your project — find it under Project settings → Keys.

1. Install

Install the adapter alongside the core SDK.

npm install @tatlacas/brevwick-vue @tatlacas/brevwick-sdk

2. Wire the SDK

src/main.tsTypeScript

import { createApp } from 'vue';
import { BrevwickPlugin } from '@tatlacas/brevwick-vue';
import App from './App.vue';

createApp(App)
  .use(BrevwickPlugin, { projectKey: 'pk_test_demo' })
  .mount('#app');

src/App.vueVue

<script setup lang="ts">
import { FeedbackButton } from '@tatlacas/brevwick-vue';
</script>

<template>
  <main>
    <!-- your app -->
    <FeedbackButton position="bottom-right" />
  </main>
</template>

Verify

  • Run `vite` and open the app.
  • Click the floating feedback button.
  • Submit a test issue.
  • Confirm the issue lands in /app/issues.

Full guide: /docs/sdk/vue

Browse the registry for version history, source, and download counts.