0.2.2 • Published 2 years ago

vue-fb-customer-chat v0.2.2

Weekly downloads
459
License
MIT
Repository
github
Last release
2 years ago

Facebook Customer Chat Plugin for Vue.js

Demo

https://dmnCodes.github.io/vue-fb-customer-chat/

Installation

Install using npm

$ npm install vue-fb-customer-chat

Install using yarn

$ yarn add vue-fb-customer-chat

Usage

Setting up the Messenger

For the messenger to work, you need to enable it on Facebook first:

  1. Go to your Page on Facebook
  2. Go to About and copy the Page ID (https://www.facebook.com/help/1503421039731588)
  3. Go to Settings > Messaging
  4. Complete the setup in the Add Messenger to your website, do not forget to add both production and local URLs

For Vue.js projects.

import Vue from 'vue'
import VueFbCustomerChat from 'vue-fb-customer-chat'

Vue.use(VueFbCustomerChat, {
  page_id: null, //  change 'null' to your Facebook Page ID,
  theme_color: '#333333', // theme color in HEX
  locale: 'en_US', // default 'en_US'
})

For Nuxt.js projects.

Create 'plugins/vue-fb-customer-chat.js'

import Vue from 'vue'
import VueFbCustomerChat from 'vue-fb-customer-chat'

Vue.use(VueFbCustomerChat, {
  page_id: null, //  change 'null' to your Facebook Page ID,
  theme_color: '#333333', // theme color in HEX
  locale: 'en_US', // default 'en_US'
})

Add plugin in nuxt.config.js file for plugins section

plugins: [
  { src: '~/plugins/vue-fb-customer-chat.js', ssr: false }
],
0.2.2

2 years ago

0.2.1

2 years ago

0.2.0

4 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago

0.0.0

5 years ago