🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
+ vue ``` 1. 在 methods 中定义事件 methods: { deleteItem(index) { this.list.splice(index, 1) } } 2. 在元素上使用 <button @click="handleBtnClick">确定</button> ``` + react ``` 1. react 中定义事件,事件是与 constructor, render 平级的且无需逗号隔开 2. 在元素上使用需要注意绑定 this 添加 3. 事件名写法 @click 与 onClick 的区别 4. 变量写法 :index="item", index={item} 的区别 ```