forked from opentiny/tiny-vue
33 lines
673 B
Vue
33 lines
673 B
Vue
<template>
|
|
<div class="basic-container">
|
|
<div v-for="fit in fits" :key="fit">
|
|
<div class="title">{{ fit }}</div>
|
|
<tiny-image style="" :src="url" :fit="fit"></tiny-image>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { Image as TinyImage } from '@opentiny/vue'
|
|
|
|
const fits = ref(['fill', 'contain', 'cover', 'none', 'scale-down'])
|
|
const url = ref(`${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/mountain.png`)
|
|
</script>
|
|
|
|
<style scoped>
|
|
.basic-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.title {
|
|
margin: 16px 16px 8px 0;
|
|
}
|
|
.tiny-image {
|
|
width: 100px;
|
|
height: 100px;
|
|
margin-right: 16px;
|
|
}
|
|
</style>
|