forked from opentiny/tiny-vue
23 lines
437 B
Vue
23 lines
437 B
Vue
<template>
|
|
<div class="flex justify-around w-30">
|
|
<tiny-image :image-size="100" :src="url"></tiny-image>
|
|
<br />
|
|
<tiny-image :image-size="100" round :src="url"></tiny-image>
|
|
</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/1.jpg`
|
|
}
|
|
}
|
|
}
|
|
</script>
|