Guest User

Untitled

a guest
Sep 25th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Vue.component('accordion-header', {
  2. inject: ['accordionItemState'],
  3.  
  4. template: `
  5. <h2 class="accordion-header">
  6. <button @click="accordionItemState.expanded = !accordionItemState.expanded">
  7. {{ accordionItemState.expanded ? '▼' : '►' }}
  8. <slot></slot>
  9. </button>
  10. </h2>
  11. `
  12. })
Add Comment
Please, Sign In to add comment