mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
23 lines
340 B
Vue
23 lines
340 B
Vue
<template>
|
|
<div class="bg-white h-full">
|
|
<iframe-loader :url="link" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import IframeLoader from 'shared/components/IframeLoader.vue';
|
|
|
|
export default {
|
|
name: 'ArticleViewer',
|
|
components: {
|
|
IframeLoader,
|
|
},
|
|
props: {
|
|
link: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
};
|
|
</script>
|