xiaofu-ruoyi-vue/node_modules/element-ui/packages/slider/src/marker.js

19 lines
324 B
JavaScript

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