又是取名的一天 2024-09-05 09:55 采纳率: 20%
浏览 8

vue3的component 怎吗动态的显示

img

img


就是展示这样的div 但是出不来 但用v-html el-button的样式出不来? 这个要怎吗展示

  • 写回答

1条回答 默认 最新

  • Nymph_Zhu 2024-09-05 11:04
    关注
    <template>
      <div v-html="computedHtml"></div>
    </template>
     <script setup>
     import { ref, computed } from 'vue';
     const rawHtml = ref('<p>这是一个<strong>HTML</strong>字符串</p>');
     const computedHtml = computed(() => rawHtml.value);
    </script>
    
    评论

报告相同问题?

问题事件

  • 修改了问题 9月5日
  • 创建了问题 9月5日