Vue ABTasty integration plugin
npm install vue-abtastyZero dependency plugin that allows you to use ABTasty in your VueJS project
bash
yarn add vue-abtasty
`or through npm :
`bash
npm install vue-abtasty --save
`Usage
Start using it in your Vue application
`js
import VueABTasty from 'vue-abtasty'Vue.use(VueABTasty, {
identifier: '[YOUR-TOKEN]'
})
`Options
-
identifier key is mandatory. You can find it on your ABTasty configuration page
- async key is optional. Values can either be true or false depending if you want async script or not. Default is false$3
`js
import VueABTasty from 'vue-abtasty'Vue.use(VueABTasty, {
identifier: '1234567890abcdef1234567890abcdef',
async: true
})
`Develop
`bash
git clone https://github.com/SeniorMedia/vue-abtasty.git
cd vue-abtasty
yarn install
yarn run test
``