mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-03-13 12:13:23 +00:00
18 lines
266 B
Vue
18 lines
266 B
Vue
![]() |
<template>
|
||
|
<div class="preview__iframe-wrapper">
|
||
|
<iframe class="preview__iframe" :src="url" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'PreviewPDFBrowser',
|
||
|
props: {
|
||
|
url: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
</script>
|