2021-03-25 19:16:32 +08:00
|
|
|
<template>
|
2021-08-05 13:47:48 +08:00
|
|
|
<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>
|