diff --git a/src/App.js b/src/App.js index b6a51d1..7a56145 100644 --- a/src/App.js +++ b/src/App.js @@ -6,7 +6,7 @@ function App() { // vue3 组合式 API // React 必须大写 Pascal 命名 组件 function FnHello({name = "Fn"}) { - return
Hello world By {name}
+ return
Hello world By {name}
} let com = FnHello({name: "obj"}) @@ -98,6 +98,7 @@ function App() { 3 ] + // 数组渲染 let arr2 = [ FnHello({name: "item1"}), FnHello({name: "item2"}), @@ -158,9 +159,13 @@ function App() {
{/*logo*/} - - + {/*数组渲染*/} + {[ + // key 必须唯一 + , + + ]}