zxx

Results 3 comments of zxx

感谢作者的回复。改成div之后确实可以了。 但又有了另外一个问题:在vue中,即使改成div容器,仍然不可以触发点击事件,代码如下: ```javaScript 播放列表 001 002 003 004 005 006 ```

已解决。 在Vue的使用`@click`或者`@click.native`无法触发点击事件,需要使用原生的点击事件`onclick`。 方法如下哦: 1、更改绑定的点击事件 ```html 003 ``` 2、在`methods`中定义相关方法 ```javaScript methods: { changeSource () { console.log('changeSource') } } ``` 3、在`created`中给window添加事件 ```javaScript created () { window.changeSource = this.changeSource } ````

I have a same question