Skip to content
Snippets Groups Projects
Commit b23ba173 authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

Merge remote-tracking branch 'origin/master'

parents d4ce35e1 6f299171
No related branches found
No related tags found
No related merge requests found
Pipeline #27036 passed
CHANGELOG CHANGELOG
========= =========
6.1.2 (22/02/2024)
------------------
- [FIX] Les composants peuvent être placés dans des sous-sous répertoires de front
6.1.1 (21/02/2024)
------------------
- Nouvelles propriétés pour le composants génériques u-icon (id et rotate)
- Permettre la surcharge des options des toasts du flashmessenger
6.1 (11/12/2023) 6.1 (11/12/2023)
------------------ ------------------
......
...@@ -13,7 +13,7 @@ function init(vues, options) ...@@ -13,7 +13,7 @@ function init(vues, options)
for (const path in vues) { for (const path in vues) {
let compPath = path.slice(2, -4); let compPath = path.slice(2, -4);
let compName = compPath.replace('/', ''); let compName = compPath.replaceAll('/', '');
components[compName] = vues[path].default; components[compName] = vues[path].default;
} }
...@@ -34,7 +34,7 @@ function init(vues, options) ...@@ -34,7 +34,7 @@ function init(vues, options)
if (undefined !== options.autoloads){ if (undefined !== options.autoloads){
for (const alias in options.autoloads) { for (const alias in options.autoloads) {
let compName = options.autoloads[alias].replace('/', ''); let compName = options.autoloads[alias].replaceAll('/', '');
app.component(alias, components[compName]); app.component(alias, components[compName]);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment