dataease/frontend/src/components/canvas/custom-component/Picture.vue
2021-03-30 15:38:32 +08:00

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>