2024-07-15 16:34:28 +02:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
import '../scss/main.scss'
|
|
|
|
import Etape from './vuejs/Etape.vue'
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-07-10 16:16:51 +02:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* reha behaviors.
|
|
|
|
*/
|
|
|
|
(function (Drupal) {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
Drupal.behaviors.reha = {
|
|
|
|
attach: function (context, settings) {
|
|
|
|
console.log('It works!');
|
2024-07-15 16:34:28 +02:00
|
|
|
createApp(Etape).mount('#etape-modale');
|
2024-07-10 16:16:51 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} (Drupal));
|