Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 675 Bytes

README.md

File metadata and controls

39 lines (35 loc) · 675 Bytes

Unofficial vue-reamaze plugin

Get

npm install --save vue-reamaze

Use

import VueReamaze from "vue-reamaze";
Vue.use(VueReamaze, {
  appId: "your account",
  img: "image",
  color: "color",
  size: size (this is number),
  position: "position"
});

Use with nuxtjs

Edit nuxt config and add

plugins: [
    { src: '~/plugins/reamaze.js', ssr: false }
]

plugins/reamaze.js file

import Vue from "vue";
Vue.use(VueReamaze, {
  appId: "your account",
  img: "image",
  color: "color",
  size: size (this is number),
  position: "position"
});

Plugin is based on vue-intercom plugin.