forked from opentiny/tiny-vue
19 lines
349 B
Vue
19 lines
349 B
Vue
<template>
|
|
<tiny-user-head type="image" :modelValue="imgUrl"></tiny-user-head>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { UserHead } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyUserHead: UserHead
|
|
},
|
|
data() {
|
|
return {
|
|
imgUrl: `${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/fruit.jpg`
|
|
}
|
|
}
|
|
}
|
|
</script>
|