26 lines
311 B
Vue
26 lines
311 B
Vue
![]() |
<template>
|
||
|
<span>
|
||
|
|
||
|
</span>
|
||
|
</template>
|
||
|
<script>
|
||
|
const prefixCls = 'ivu-avatar';
|
||
|
|
||
|
export default {
|
||
|
name: 'Avatar',
|
||
|
props: {
|
||
|
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
},
|
||
|
computed: {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
};
|
||
|
</script>
|