UNPKG
vuepress-intercom
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Intercom plugin for VuePress
github.com/JorgenVatle/vuepress-intercom
JorgenVatle/vuepress-intercom
vuepress-intercom
/
src
/
index.js
9 lines
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
=
(
options = {}
) =>
{
return
{
enhanceAppFiles
: [{
name
:
'intercom'
,
content
:
'import VueIntercom from "vue-intercom";'
+
`export default ({ Vue }) => { Vue.use(VueIntercom,
${
JSON
.stringify(options)}
) }`
}] } };