Results 12 comments of cihad

@Ryqsky Is this can be an usage example: ```html Content for the Target This Element is not controlled by our Vue-App, but we can create a here with . new...

Thank you for your interest. I will try.

Maybe this will help: https://stackblitz.com/edit/webpack-webpack-js-org-vcdpkp?file=src/index.js

Yes, it's a problem. [See on Playground](https://microsoft.github.io/monaco-editor/playground.html?source=v0.40.0#XQAAAAISAgAAAAAAAABBqQkHQ5NjdQultUhUwcsQIjjaoVayL-wYsMehNIl_INnD7gUJWfYInkPB7B6Uva2UiFKMdg3Ww8_eclKA4rlSDXe2azVgqZQNCrRk8EypJzNzFOuhHdOTNwy_lPIWe9fpcafu5AA3WS3p7DM-ON88RC2Tvgac1ZesmvqxVWoHcu9DqlfhU5E0NP2RkBybSDli0PqZLYXH3vzGsYnet3y89SHFP5-UFxeRiH9AKpSBHDkGxAS-e0jRyu-fEQ30AZv3FZd7GSpo0i5X6UDYLME9yYt2bk_zD8HWocn4mHCtJo-zMPUoEMIf9HOBtij5VmoMv_93eVYA)

My solution was: ```js // https://vitejs.dev/config/ export default defineConfig({ // ... build: { rollupOptions: { // ... output: { entryFileNames: '[name].js', intro: "const window = eval('this'); void window;" }, },...

For example: [https://codesandbox.io/s/collapse-example-with-vue-vnode-syringe-u84xu?file=/src/components/Collapse.vue:132-145](https://codesandbox.io/s/collapse-example-with-vue-vnode-syringe-u84xu?file=/src/components/Collapse.vue:132-145)

I need it my own project. I developed a simple solution: (But it works like a charm.) `create-use-render-template.ts`: ```ts import { useEffect, useMemo, useState } from "react"; import { useEngine...

Maybe a solution similar to [radix slot ](https://www.radix-ui.com/primitives/docs/utilities/slot) would be better: ```js render: ({ SlotComponent, height }) => { return theme.units * height }} /> } ```