update the master branch to the latest
This commit is contained in:
parent
67d534df27
commit
23a0ba9831
611 changed files with 122648 additions and 0 deletions
62
examples/routers/avatar.vue
Normal file
62
examples/routers/avatar.vue
Normal file
|
@ -0,0 +1,62 @@
|
|||
<template>
|
||||
<div class="demo-avatar">
|
||||
<Avatar :style="{background: color}">{{ user }}</Avatar>
|
||||
<Button size="small" @click="handleChange">Change</Button>
|
||||
<div>
|
||||
<div class="demo-avatar">
|
||||
<Avatar icon="ios-person" size="large" />
|
||||
<Avatar icon="ios-person" />
|
||||
<Avatar icon="ios-person" size="small" />
|
||||
</div>
|
||||
<div class="demo-avatar">
|
||||
<Avatar shape="square" icon="ios-person" size="large" />
|
||||
<Avatar shape="square" icon="ios-person" />
|
||||
<Avatar shape="square" icon="ios-person" size="small" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="demo-avatar">
|
||||
<Avatar icon="ios-person" />
|
||||
<Avatar>U</Avatar>
|
||||
<Avatar>USER</Avatar>
|
||||
<Avatar src="https://i.loli.net/2017/08/21/599a521472424.jpg" />
|
||||
<Avatar style="color: #f56a00;background-color: #fde3cf">U</Avatar>
|
||||
<Avatar style="background-color: #87d068" icon="ios-person" />
|
||||
</div>
|
||||
<div class="demo-avatar-badge">
|
||||
<Badge :count="1">
|
||||
<Avatar shape="square" icon="ios-person" />
|
||||
</Badge>
|
||||
<Badge dot>
|
||||
<Avatar shape="square" icon="ios-person" />
|
||||
</Badge>
|
||||
</div>
|
||||
<br><br><br>
|
||||
<Avatar custom-icon="ivu-icon-ios-person" />
|
||||
|
||||
<Avatar :src="src" size="large" @on-error="handleError" />
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
const UserList = ['二', '小二', '三', '二个人'];
|
||||
const ColorList = ['#f56a00', '#7265e6', '#ffbf00', '#00a2ae'];
|
||||
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
user: UserList[0],
|
||||
color: ColorList[0],
|
||||
src: 'https://dev-file.iviewui.com/userinfoPDvn9gKWYihR24SpgC319vXY8qniCqj41/avatar'
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleChange () {
|
||||
const index = UserList.indexOf(this.user);
|
||||
this.user = index < UserList.length - 1 ? UserList[index + 1] : UserList[0];
|
||||
this.color = index < ColorList.length - 1 ? ColorList[index + 1] : ColorList[0];
|
||||
},
|
||||
handleError () {
|
||||
this.src = 'https://dev-file.iviewui.com/userinfoPDvn9gKWYihR24SpgC319vXY8qniCqj4/avatar';
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue