vue组件中怎么引入html文件

vue组件中怎么引入html文件,第1张

1、HtmlPanel.vue文件

<template> <div>  <mu-circular-progress :size="40" v-if="loading"/>  <div v-html="html"></div> </div></template><style> </style><script> export default{  // 使用时请使用 :url.sync=""传值  props: {   url: {    required: true   }  },  data () {   return {    loading: false,    html: ''   }  },  watch: {   url (value) {    this.load(value)   }  },  mounted () {   this.load(this.url)  },  methods: {   load (url) {    if (url &&url.length >0) {     // 加载中     this.loading = true     let param = {      accept:'text/html,text/plain'     }     this.$http.get(url, param).then((response) =>{      this.loading = false      // 处理HTML显示      this.html = response.data     }).catch(() =>{      this.loading = false      this.html = '加载失败'     })    }   }  } }</script>

htmlViewSample.vue

?

12345678910111213141516171819202122232425

<template> <div>  <v-html-panel :url.asyc="url1"></v-html-panel>  <v-html-panel :url.asyc="url2"></v-html-panel> </div></template><style scoped> div{color:red}</style><script> export default{  data () {   return {    url1: '',    url2: ''   }  },  mounted () {   this.url1 = 'http://file.xxx.com/group1/M00/0C/F5/xxxxxxxx.html'   this.url2 = 'http://file.xxx.com/group1/M00/0D/3B/yyyyyyy.html'  },  methods: {  } }

</script>

2、效果图

3、注意事项:

直接使用axios处理的GET请求,需要处理跨域;

外部的css样式会作用到显示的html;

同时加载的外部html里的script也可能会执行,需要按需处理下;

外部HTML文件内部的相对路径将不会被自动识别,绝对路径可以。

如果要在Vue中引入Vue框架自身的样式,需要先使用 npm 或 yarn 安装 Vue 的官方样式库,安装命令为:npm install vue-style-loader。然后,可以将对应的 CSS 文件引入 HTML 文件中即可。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7456260.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-05
下一篇 2023-04-05

发表评论

登录后才能评论

评论列表(0条)

保存