en-US
Hide the specific content entered.
zh-CN
隐藏输入的具体内容。
import { useState } from 'react';
import { DInput } from '@react-devui/ui';
export default function Demo() {
const [value1, setValue1] = useState('Password');
const [value2, setValue2] = useState('Password');
return (
<>
<DInput dModel={value1} dPlaceholder="Password" dType="password" onModelChange={setValue1}></DInput>
<DInput dModel={value2} dPlaceholder="Password" dType="password" dClearable onModelChange={setValue2}></DInput>
<DInput dModel={value2} dPlaceholder="Password" dType="password" dClearable dDisabled onModelChange={setValue2}></DInput>
</>
);
}