Vue 在 #document-fragment 中添加内容
P粉916760429
P粉916760429 2023-08-31 09:43:47
[Vue.js讨论组]

我将 vue3 与 nuxt3 结合使用,并希望在生成的 #document-fragment 中添加一个包含内容的模板标签。生成的 HTML 应如下所示:

<body>
  <template id="some-id">
    #document-fragment
      <div>
        ...
      </div>
  </template>
</body>

当我使用纯 html 时,效果很好。在 vue3 中,元素不在 #document-fragment 内部,而是在其下方,如下所示:

<body>
  <template id="some-id">
    #document-fragment
    <div>
      ...
    </div>
  </template>
</body>

我的vue3代码如下所示(类似于html代码):

<template>
  <v-app>
    <template id="some-id">
      <div></div>
    </template>
  </v-app>
</template>

有什么方法可以将内容放入#document-fragment元素中吗?

P粉916760429
P粉916760429

全部回复(1)
P粉594941301

我通过在模板标记上使用 ref 然后使用 render 函数解决了这个问题。

<template id="some-id" ref="someRef">
</template>
const someRef: Ref<HTMLTemplateElement | undefined> = ref()
onMounted(() => {
  if (someRef.value?.content) {
    // @ts-ignore
    render('div', someRef.value.content)
  }
})

如果你想插入一个组件,你可以像这样使用它:

const someRef: Ref<HTMLTemplateElement | undefined> = ref()
onMounted(() => {
  if (someRef.value?.content) {
    // @ts-ignore
    render(h(SomeComponent, { someProp: someValue }), someRef.value.content)
  }
})

也许有更好的,但目前可行。

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号