vue组件中怎么引入html文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue组件中怎么引入html文件相关的知识,希望对你有一定的参考价值。

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> divcolor: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文件内部的相对路径将不会被自动识别,绝对路径可以。

参考技术A <script type="text/template" id="tpl">
--
</script>

js:

var MyComponent = Vue.extend(
template: '#tpl'
);

希望对你有所帮助 望采纳

以上是关于vue组件中怎么引入html文件的主要内容,如果未能解决你的问题,请参考以下文章

vue单文件组件怎么引入swiper.js?

javascript文件怎么引入js文件

angular7中引入外部js文件

在HTML页面中引入vue组件

JSP页面中怎么引入js文件

js文件如何引入jquery