mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
41 lines
789 B
Vue
41 lines
789 B
Vue
<template>
|
|
<div class="demo-image">
|
|
<div v-for="fit in fits" :key="fit" class="block">
|
|
<div class="demonstration">{{ fit }}</div>
|
|
<br>
|
|
<el-image
|
|
style="width: 100px; height: 100px"
|
|
:src="url"
|
|
:fit="fit"
|
|
alt="111"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
data() {
|
|
return {
|
|
fits: ['fill', 'contain', 'cover', 'none', 'scale-down'],
|
|
url: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-image {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.block {
|
|
margin: 0 20px;
|
|
text-align: center;
|
|
}
|
|
.demo-image .demonstration {
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|