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.

15 lines
292 B

  1. document.addEventListener('DOMContentLoaded', function () {
  2. 'use strict';
  3. new Vue({
  4. el: '#vue-modal',
  5. data: {
  6. showModal: false,
  7. content: 'Default Modal Text'
  8. },
  9. methods: {
  10. close: function close() {
  11. this.showModal = false;
  12. }
  13. }
  14. });
  15. });