A package for Vue JS to toggle easylly class on html elements
npm install vue-class-togglebash
npm i --save vue-class-toggle
`
Require it in your main.js file:
`javascript
// ES6
import 'vue-class-toggle';
`
$3
Add v-class-toggle as an attribute on the element you wish to handle and pass and config object:
`html
`
$3
`javascript
{
if: 'eventName',
do: '[add/remove/toggle] className',
on: 'unique identifier',
to: 'selector'
}
``