userAvatarBox.vue
782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<template>
<div class="user-avatar-box" v-if="users" @click="jump(users)">
<div class="box">
<div class="avatar-box">
<img
class="avatar-img" v-lazy="(users.logo || item) + SIGN.SMALL"
/>
</div>
<div class="nickname">
{{users.title}}
</div>
</div>
</div>
</template>
<script>
export default {
name: "userAvatar",
data: function () {
return {
}
},
props: ["users"],
methods: {
/**
* 点击跳转事件绑定
*/
jump(item) {
this.$emit("jump", item);
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less">
@import './userAvatarBox';
</style>