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

25 lines
372 B
Vue
Raw Normal View History

2021-03-25 19:16:32 +08:00
<template>
<div style="overflow: hidden;width: 100%;height: 100%;">
2021-06-24 13:54:58 +08:00
<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: {
2021-06-24 14:31:01 +08:00
// eslint-disable-next-line vue/require-default-prop
2021-06-24 13:54:58 +08:00
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>