--- order: 4 title: zh-CN: 无效或只读 en-US: disabled or readOnly --- ## zh-CN 通过 `disabled` 属性设置是否生效。通过 `readOnly` 属性设置是否只读。 ## en-US Configurate `disabled` and `readOnly`. ```tsx import { Mentions } from 'antd'; import React from 'react'; const { Option } = Mentions; const getOptions = () => ['afc163', 'zombiej', 'yesmeck'].map(value => ( )); const App: React.FC = () => ( <>
{getOptions()}
{getOptions()} ); export default App; ```