forked from opentiny/tiny-vue
25 lines
670 B
Vue
25 lines
670 B
Vue
<template>
|
|
<div class="demo-image__keep-style">
|
|
<tiny-image :src="url" :preview-src-list="srcList" keep-style></tiny-image>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { Image as TinyImage } from '@opentiny/vue'
|
|
|
|
const url = ref(`${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/mountain.png`)
|
|
const srcList = ref([
|
|
`${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/mountain.png`,
|
|
`${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/house.jpg`,
|
|
`${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/bridge.jpg`
|
|
])
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-image__keep-style {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
</style>
|