https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42150 --- Comment #21 from Arthur Suzuki <arthur.suzuki@biblibre.com> --- Created attachment 196142 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=196142&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. Signed-off-by: Arthur Suzuki <arthur.suzuki@biblibre.com> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.