diff --git a/README.md b/README.md
index 1f21241e..e0d409de 100644
--- a/README.md
+++ b/README.md
@@ -199,6 +199,12 @@ ReactDOM.render(
             
() => document.body | Where to render the DOM node of popup menu when the mode is horizontal or vertical+ | 
+            | itemRender+ | Function(originNode:React.ReactNode, item:ItemType) => React.ReactNode+ | () => originNode+ | Customize the rendering of menu item+ | 
         
             | builtinPlacements | Object of alignConfigs for dom-aligndiff --git a/docs/examples/items.tsx b/docs/examples/items.tsx
index a0044731..5bc57466 100644
--- a/docs/examples/items.tsx
+++ b/docs/examples/items.tsx
@@ -6,6 +6,16 @@ import '../../assets/index.less';
 
 export default () => ( |