Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 337 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 337 Bytes

vue3-fb-chat

Based on https://github.com/dmnCodes/vue-fb-customer-chat

Rewritten for Vue 3

To use in Nuxt 3

Create a new file in your plugins directory:

import Vue3FBChat from 'vue3-fb-chat/dist/main'
export default defineNuxtPlugin((nuxtApp) => {
  nuxtApp.vueApp.use(Vue3FBChat, {
    page_id: 'your-page-id'
  })
})