UNPKG

element3

Version:

A Component Library for Vue3

19 lines (16 loc) 319 B
export default { name: 'ElMarker', props: { mark: { type: [String, Object] } }, render() { const label = typeof this.mark === 'string' ? this.mark : this.mark.label return ( <div class="el-slider__marks-text" style={this.mark.style || {}}> {label} </div> ) } }