This commit is contained in:
2026-02-06 18:34:35 +08:00
commit f7f4c94c00
3285 changed files with 563208 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<template>
<div>
<span v-if="loading">加载中...</span>
<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>