💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
+ 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} 的区别 ```