<div @click="dropDownMenu">
<i
:class="{
'el-icon-arrow-down': !showMore,
'el-icon-arrow-up': showMore
}">
</i>
</div>
....
// script
data () {
return {
...
showMore: false
}
},
computed: {
showTag () {
if (this.showMore) {
return this.data
} else {
return this.data.slice(0, 10)
}
}
}
....
dropDownMenu() {
this.showMore = !this.showMore
}
网友评论