forked from opentiny/tiny-vue
32 lines
640 B
Vue
32 lines
640 B
Vue
<template>
|
|
<div class="flex">
|
|
<div class="px-5">
|
|
<p>默认</p>
|
|
<tiny-image :src="url" :image-size="500"></tiny-image>
|
|
</div>
|
|
<div class="px-5">
|
|
<p>自定义</p>
|
|
<tiny-image :src="url" :image-size="500">
|
|
<template #placeholder>
|
|
<div class="image-slot">加载中<span>...</span></div>
|
|
</template>
|
|
</tiny-image>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Image } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyImage: Image
|
|
},
|
|
data() {
|
|
return {
|
|
url: `${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/9.jpg`
|
|
}
|
|
}
|
|
}
|
|
</script>
|