ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
+ 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} 的区别 ```