Drupal 8 Site using Vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
276 B

  1. {{ attach_library('vue_js/collapsible') }}
  2. {{ attach_library('vue_js/collapsible-vue') }}
  3. <div class="collapsible collapsible-vue">
  4. <div class="title" @click="toggleBody">
  5. <h2>{{ title }}</h2>
  6. </div>
  7. <div class="body" v-if="showBody">
  8. {{ body }}
  9. </div>
  10. </div>