prevent loading old phrasen plugin when Modal component is used, only commented out since plugin is maybe needed in ModalApp in some cases

This commit is contained in:
Harald Bamberger
2025-04-11 17:00:39 +02:00
parent 7f7a423e65
commit f7138b2cfc
+2 -2
View File
@@ -1,4 +1,4 @@
import Phrasen from '../../plugin/Phrasen.js';
//import Phrasen from '../../plugin/Phrasen.js';
export default {
data: () => ({
@@ -104,7 +104,7 @@ export default {
instance.use(primevue.config.default, {zIndex: {overlay: 9999}})
}
instance.use(Phrasen); // TODO(chris): find a more dynamic way
//instance.use(Phrasen); // TODO(chris): find a more dynamic way
instance.mount(wrapper);
document.body.appendChild(wrapper);
});