UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

54 lines (42 loc) 984 B
--- category: 2 title: 无效或只读 title_en: disabled or readOnly --- zh-CN 通过 `disabled` 属性设置是否生效。通过 `readOnly` 属性设置是否只读。 en-US Configurate `disabled` and `readOnly`. ````jsx import { Mention } from 'parkball'; const { toString } = Mention; function onChange(editorState) { console.log(toString(editorState)); } const users = ['afc163', 'benjycui', 'yiminghe', 'jljsj33', 'dqaria', 'RaoHai']; function App() { return ( <div> <div style={{ marginBottom: 10 }}> <Mention style={{ width: '100%' }} onChange={onChange} placeholder="this is disabled Mention" suggestions={users} disabled /> </div> <Mention style={{ width: '100%' }} onChange={onChange} placeholder="this is readOnly Mention" suggestions={users} readOnly /> </div> ); } ReactDOM.render( <App />, mountNode); ````