mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
17 lines
239 B
Vue
17 lines
239 B
Vue
<template>
|
|
<img
|
|
id="printable-file"
|
|
class="file"
|
|
:class="{'file-shadow': ! $isMobile() }"
|
|
:src="file.data.attributes.file_url"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ImageFile',
|
|
props: [
|
|
'file'
|
|
],
|
|
}
|
|
</script> |