UNPKG

@alicloud/console-components

Version:

Alibaba Cloud React Components

21 lines (20 loc) 767 B
/** * title: "基础带刻度交互(以从左向右配置为例)" * description: "通过设置marks配置刻度数值显示逻辑。" */ import React from 'react'; import { Range } from '@alicloud/console-components'; var style = { marginBottom: '15px', }; var h4Style = { fontSize: '12px', marginTop: '24px', }; export default (function () { return (React.createElement("div", null, React.createElement("h4", { style: h4Style }, "\u9ED8\u8BA4"), React.createElement(Range, { defaultValue: 4, marks: 10, max: 10, style: style, hasTip: true }), React.createElement("h4", { style: h4Style }, "\u7981\u7528"), React.createElement(Range, { defaultValue: 4, marks: 10, max: 10, style: style, disabled: true }))); });