Proper support for `<details>` tag in Vue.js including `v-model` attribute
npm install vue-details
Proper support for tag in Vue.js including v-model attribute.
Install package
```
npm install vue-details
Initialize globally
`js
import Vue from 'vue';
import VueDetails from 'vue-details';
Vue.component('v-details', VueDetails);
`
or locally as shown in the example below.
Load script
`html`
or
`html`
Register component
`js`
Vue.component('v-details', VueDetails);
`vue
Content is {{ open ? 'shown' : 'hidden' }}
Expandable content
``