web/im/src/components/face-null.vue

18 lines
314 B
Vue
Raw Normal View History

2022-12-28 10:08:51 +08:00
<template>
<img :src="'https://avatars.dicebear.com/api/initials/'+text+'.svg?fontSize=38'" alt=""/>
</template>
<script>
export default {
props:{
text:{
type:null,
default:''
}
}
}
</script>
<style lang="scss" scoped>
</style>