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.

14 lines
358 B

  1. document.addEventListener('DOMContentLoaded', function () {
  2. 'use strict';
  3. drupalSettings.modal = new Vue({ // eslint-disable-line no-unused-vars, no-undef, max-len
  4. el: '.collapsible-vue',
  5. data: {
  6. showBody: false
  7. },
  8. methods: {
  9. toggleBody: function toggleBody() {
  10. this.showBody = !this.showBody;
  11. }
  12. }
  13. });
  14. });