\n\u003C/template>\n```\n\n### Description\n\nhttps://skr.sh/vSqMC30k7Rm\n\nBy the way, in non-multiple mode i cant remove value... https://skr.sh/vSqNhU5VYrM",[2953,2956],{"name":2954,"color":2955},"bug","d73a4a",{"name":2957,"color":2958},"v3","49DCB8","ui","UInputMenu not triggering when remove items in multiple mode","2025-01-25T13:12:42Z","https://github.com/nuxt/ui/issues/2743",{"labels":2964,"number":2969,"owner":2911,"repository":2911,"state":2912,"title":2970,"updated_at":2971,"url":2972,"score":2973},[2965,2966],{"name":2908,"color":2909},{"name":2967,"color":2968},"needs reproduction","FBCA04",9466,"\u003Cnuxt> component is not rendered by SSR under highload","2023-02-17T08:04:05Z","https://github.com/nuxt/nuxt/issues/9466",0.662875,{"description":2975,"labels":2976,"number":2979,"owner":2911,"repository":2911,"state":2912,"title":2980,"updated_at":2981,"url":2982,"score":2983},"### Versions\r\n\r\n- nuxt: v2.15.8\r\n- node: v16.5.0\r\n\r\n### Reproduction\r\n\r\nAfter upgrading to Nuxt v.2.15.8, I encountered an issue where Vue components inside a Nuxt Content file stopped working.\r\nHowever, this is only the case when statically generating the pages.\r\nThey work fine in dev mode.\r\n\r\nSee https://github.com/DerYeger/magdalena-jirku or https://github.com/DerYeger/jan-mueller for examples.\r\nSee https://github.com/DerYeger/jan-mueller/runs/3313688848 for the log of a failed build.\r\n\r\n### Steps to reproduce\r\n\r\n1. Include a Vue component inside a Nuxt Content file.\r\n2. Run `nuxt generate`.\r\n\r\n### What is Expected?\r\n\r\nThe build works.\r\n\r\n### What is actually happening?\r\n\r\nThe error `Error: render function or template not defined in component: \u003Ccomponent-name>` is thrown.\r\n",[2977,2978],{"name":2921,"color":2922},{"name":2908,"color":2909},9665,"v2.15.8 breaks Vue components inside Nuxt Content","2023-01-22T15:44:59Z","https://github.com/nuxt/nuxt/issues/9665",0.6642643,{"description":2985,"labels":2986,"number":2992,"owner":2911,"repository":2911,"state":2912,"title":2993,"updated_at":2994,"url":2995,"score":2996},"### Environment\n\n------------------------------\n- Operating System: Linux\n- Node Version: v20.15.1\n- Nuxt Version: 3.13.2\n- CLI Version: 3.13.2\n- Nitro Version: 2.9.7\n- Package Manager: npm@10.7.0\n- Builder: -\n- User Config: ssr, devtools, build, vite, vue, hooks, css, components, runtimeConfig, router, ignore, app, site, robots, routeRules, ogImage, schemaOrg, icon, postcss, nitro, modules, vitalizer, pwa, ui\n- Runtime Modules: @nuxt/ui@2.18.7, @nuxtjs/device@3.2.4, @vueuse/nuxt@11.1.0, @pinia/nuxt@0.5.5, @nuxtjs/seo@2.0.0-rc.18, @vite-pwa/nuxt@0.10.5, nuxt-vitalizer@0.10.0\n- Build Modules: -\n------------------------------\n\n### Reproduction\n\nNot sure how to provide a reproduction since the issue only appears once i build my app.\n\n### Describe the bug\n\nI need to render dynamic templates on the server. For this I have set `vue.runtimeCompiler: true` inside the nuxt config. I also have written a simple `RenderTemplate.vue` component that gets passed a template string and renders the appropriate content.\n\n```ts\n\u003Cscript setup lang=\"ts\">\n // Custom components we allow to render\n import {\n KlzAudio,\n // Tuncated full list...\n } from '#components';\n\n interface Props {\n template: string;\n // eslint-disable-next-line\n options?: any;\n }\n\n const props = withDefaults(defineProps\u003CProps>(), {\n options: {}\n });\n\n const compiledTemplate = computed(() => {\n return defineComponent({\n components: {\n KlzAudio,\n // Tuncated full list...\n },\n props: {\n options: {\n type: Object,\n default: () => ({})\n }\n },\n template: props.template\n });\n });\n\u003C/script>\n\n\u003Ctemplate>\n \u003Cdiv>\n \u003Ccomponent\n :is=\"compiledTemplate\"\n ref=\"compRef\"\n :options=\"props.options\"\n >\u003C/component>\n \u003C/div>\n\u003C/template>\n```\n\nThis works just fine in development mode or when I build using `ssr: false`. In development I have no issues also with `ssr: true` everything works as expected and If I inspect the source code of the pages where I use the `RenderTemplate` component I also see the rendered HTML just fine. But when I build my app using `npx nuxi build --preset=cloudflare_pages` and try to run the server I get:\n\n```\nOn-the-fly template compilation is not supported in the ESM build of @vue/server-renderer. All templates must be pre-compiled into render functions.\n```\n\nUPDATE: This only happens if i use the `cloudflare_pages` preset with `node-server` it works just fine.\n\nI have only found one other issue that mentioned this exact error: https://github.com/nuxt/nuxt/issues/13358\n\nSadly the fix suggested does not work in my scenario since I render more complex components and would get other errors related to not being in the nuxt context using `renderString()`.\n\nI also found that using `render` instead of `template` together with `compile` resolves the \"on-the-fly\" error but when looking at the source of my page the dynamically rendered content is not part of the HTML rendered on the server which is a big issue.\n\nResolves initial error but does not render HTML content on the server:\n```ts\nconst compiledTemplate = computed(() => {\n return defineComponent({\n components: {\n KlzAudio,\n // Truncated full list...\n },\n props: {\n options: {\n type: Object,\n default: () => ({})\n }\n },\n render: compile(props.template)\n });\n});\n```\n\nHow can I fix this issues? Why is it working in dev but not when building the app? \n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2987,2988,2989],{"name":2921,"color":2922},{"name":2967,"color":2968},{"name":2990,"color":2991},"closed-by-bot","ededed",29769,"On-the-fly template compilation is not supported in the ESM build of @vue/server-renderer.","2024-11-11T02:00:16Z","https://github.com/nuxt/nuxt/issues/29769",0.6673373,{"description":2998,"labels":2999,"number":3001,"owner":2911,"repository":2911,"state":2912,"title":3002,"updated_at":3003,"url":3004,"score":3005},"pages/test.vue:\r\n```\r\n\u003Ctemplate>\r\n \u003Cdiv> =PAGE= \u003C/div>\r\n\u003C/template>\r\n```\r\n\r\n\r\nlayouts/default.vue:\r\n```\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003CNuxt />\r\n =LAYOUT=\r\n \u003C/div>\r\n\u003C/template>\r\n```\r\n\r\nthis is a very simple basic page & layout, but when I access localhost:3000/test I can see =LAYOUT= but =PAGE= not rendered, and there is no any error in console\r\n\r\nnuxt: 2.0.0\r\n\r\nin source page I find that \u003CNUXT /> just rendered to \u003CNuxt>\u003C/Nuxt> \r\n\r\n\r\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\r\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://cmty.app/nuxt\">Nuxt\u003C/a> community (\u003Ca href=\"https://cmty.app/nuxt/nuxt.js/issues/c8353\">#c8353\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3000],{"name":2908,"color":2909},4624,"unable to compile a vue page with no error","2023-01-18T20:06:18Z","https://github.com/nuxt/nuxt/issues/4624",0.66823334,{"labels":3007,"number":3013,"owner":2911,"repository":2911,"state":2912,"title":3014,"updated_at":3015,"url":3016,"score":3017},[3008,3011,3012],{"name":3009,"color":3010},"stale","ffffff",{"name":2921,"color":2922},{"name":2908,"color":2909},7500,"Bad SSR in installed components that are building by vue-cli-service ","2023-01-22T15:36:01Z","https://github.com/nuxt/nuxt/issues/7500",0.6685077,["Reactive",3019],{},["Set"],["ShallowReactive",3022],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fVkOetR_KNLhSKvbOieYcIxl0P62eaJ6E6g86NBoSCCo":-1},"/nuxt/ui/2565"]