iview/src/components/avatar/avatar.vue

26 lines
347 B
Vue
Raw Normal View History

2017-08-15 10:07:15 +08:00
<template>
<span>
</span>
</template>
<script>
const prefixCls = 'ivu-avatar';
export default {
name: 'Avatar',
props: {
},
data () {
return {
2017-08-15 10:15:35 +08:00
prefixCls: prefixCls
2017-08-15 10:07:15 +08:00
};
},
computed: {
},
methods: {
}
};
</script>