https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42150
--- Comment #3 from Paul Derscheid <[email protected]> --- Created attachment 195723 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=195723&action=edit Bug 42150: (follow-up) Re-export h from Vue for plugin use Plugins that register inline islands need Vue's h() function to build render trees without requiring a separate Vue import or the template compiler. Re-exporting h from the islands module lets plugins import everything they need from a single source. To test: 1. From a plugin's intranet_js module script, import h: const { registerIsland, h } = await import(islandsSrc); 2. Use h() in a component's setup/render function. 3. Verify the component renders without the "runtime compilation is not supported" warning. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
