1.1.1 • Published 6 years ago
vue-abtasty v1.1.1

vue-abtasty
Zero dependency plugin that allows you to use ABTasty in your VueJS project
Installation
yarn add vue-abtastyor through npm :
npm install vue-abtasty --saveUsage
Start using it in your Vue application
import VueABTasty from 'vue-abtasty'
Vue.use(VueABTasty, {
identifier: '[YOUR-TOKEN]'
})Options
identifierkey is mandatory. You can find it on your ABTasty configuration pageasynckey is optional. Values can either betrueorfalsedepending if you want async script or not. Default isfalse
Example :
import VueABTasty from 'vue-abtasty'
Vue.use(VueABTasty, {
identifier: '1234567890abcdef1234567890abcdef',
async: true
})Develop
git clone https://github.com/SeniorMedia/vue-abtasty.git
cd vue-abtasty
yarn install
yarn run test