vue项目引入外部vue项目页面

vue项目使用iframe引入外部项目页面

vue项目引入外部项目页面有好几种方法,我这种使用的是iframe

示例

<template>
  <div>
    <iframe
      :src="userPageUrl"
      width="100%"
      height="800"
      frameborder="0"
      allowfullscreen
    ></iframe>
  </div>
</template>

<script>
export default {
      
      
  data() {
      
      
    return {
      
      
      userPageUrl: "http://127.0.0.1:8081/user/index"
    };
  }
};
</script>

效果如下

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_42949219/article/details/134728839