dataease/frontend/src/components/canvas/custom-component/Picture.vue

24 lines
289 B
Vue
Raw Normal View History

2021-03-25 19:16:32 +08:00
<template>
2021-06-24 13:54:58 +08:00
<div style="overflow: hidden">
<img :src="propValue">
</div>
2021-03-25 19:16:32 +08:00
</template>
<script>
export default {
2021-06-24 13:54:58 +08:00
props: {
propValue: {
type: String,
require: true
}
}
2021-03-25 19:16:32 +08:00
}
</script>
<style lang="scss" scoped>
img {
width: 100%;
height: 100%;
}
2021-06-24 13:54:58 +08:00
</style>