1.本地html文件的存放
在根目录下找到public文件夹,在public文件夹下创建static文件夹,把html文件放入static文件夹中
2.使用iframe标签引入html文件

<template>
  <iframe   src="/static/test.html"   :style="{width: width, height:height}" frameborder="0" ></iframe>
</template>
<script>
export default {
  name: 'ComponentsName',
  data() {
    return {
      height: window.innerHeight + 'px',//自适应当前窗口高度
      width: '100%'//自适应当前窗口宽度
    }
  },
}
</script>
Logo

前往低代码交流专区

更多推荐