mirror of
https://github.com/dataease/dataease.git
synced 2025-03-02 00:32:53 +08:00
23 lines
323 B
Vue
23 lines
323 B
Vue
![]() |
<template>
|
||
|
<div style="overflow: hidden">
|
||
|
<img :src="propValue">
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
propValue: {
|
||
|
type: String,
|
||
|
require: true,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
img {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
</style>
|