💬 NuxtJS module for Intercom
NuxtJS module for Intercom
$intercom
is called)nuxt-intercom
dependency to your project:
npm install nuxt-intercom
nuxt-intercom
module and configuration to nuxt.config.js
:
export default {
// ...other config options
modules: ["nuxt-intercom"];
intercom: {
appId: 'my_app_id',
}
}
nuxt-intercom
to the types
section of tsconfig.json
:
{
"compilerOptions": {
"types": ["nuxt-intercom"]
}
}
disabled
Boolean
false
Disable Intercom. Useful for non-production environments.
appId
String
The app_id of your Intercom app which will indicate where to store any data.
i18n
Boolean
false
Enable i18n-module integration.
hideDefaultLauncher
Boolean
false
Hide the default launcher icon. Setting to false will forcefully show the launcher icon.
alignment
String
right
Dictate the alignment of the default launcher icon to be on the left/right. Possible values: “left” or “right” (any other value is treated as right).
horizontalPadding
Number
20
Move the default launcher icon horizontally. Padding from right side of screen Minimum value: 20.
verticalPadding
Number
20
Move the default launcher icon vertically. Padding from bottom of screen. Minimum value: 20.
enableMobilePadding
Boolean
false
Apply the verticalPadding
property to mobile devices.
It can be used inside components like:
<button type="button" @click="$intercom('show')">Chat with us</button>
Intercom: Javascript API: Methods
See the LICENSE file for license rights and limitations (MIT).