You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1020 B
48 lines
1020 B
<script>
|
|
export default {
|
|
name: 'Page',
|
|
props: {
|
|
rootPrefixCls: String,
|
|
page: Number,
|
|
active: Boolean,
|
|
showTitle: Boolean,
|
|
itemRender: {
|
|
type: Function,
|
|
default: () => {},
|
|
},
|
|
},
|
|
computed: {
|
|
classes () {
|
|
const prefixCls = `${this.rootPrefixCls}-item`
|
|
let cls = `${prefixCls} ${prefixCls}-${this.page}`
|
|
if (this.active) {
|
|
cls = `${cls} ${prefixCls}-active`
|
|
}
|
|
if (this.className) {
|
|
cls = `${cls} ${this.className}`
|
|
}
|
|
return cls
|
|
},
|
|
},
|
|
methods: {
|
|
handleClick () {
|
|
this.$emit('click', this.page)
|
|
},
|
|
handleKeyPress (event) {
|
|
this.$emit('keyPress', event, this.handleClick, this.page)
|
|
},
|
|
},
|
|
render () {
|
|
return (
|
|
<li
|
|
class={this.classes}
|
|
onClick={this.handleClick}
|
|
onKeypress={this.handleKeyPress}
|
|
title={this.showTitle ? this.page : null}>
|
|
{this.itemRender(this.page, 'page', <a>{this.page}</a>)}
|
|
</li>
|
|
)
|
|
},
|
|
}
|
|
</script>
|