Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.3k views
in Technique[技术] by (71.8m points)

vue3如何加载远程字符串形式的组件?

比如:

// 伪代码
<template>
  <component :is="remote" />
</template>

<script>
export default {
  setup() {
    let remote
    axios.get("https://...").then((res) => {
      const str = res.data
      /**
        str = `<template>
          <div class="div">demo</div>
        </template>
        <script>
        export default {
          name: "Demo"
        }
        </script>
        <style lang="scss">
        .div{
          color: red;
        }
        </style>`
       */

      // 这里该怎么把 str 解析成可用的组件呢?
    });
    return {
      remote
    }
  },
};
</script>

我谷歌到 vue3-sfc-loader
但它需要一个vue实例——尽管vue3不再暴露vue

那么,还有什么办法实现这种需求吗?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

import { compile } from 'vue'


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...