# 基本 - order: 0 使用很简单。 --- ````jsx var confirm = antd.confirm; function showConfirm(){ confirm({ title: '第一个 confirm', content: 'confirm 内容' }); } React.render( , document.getElementById('components-confirm-demo-basic')); ````