
vue
cmdecsdn
这个作者很懒,什么都没留下…
展开
-
vue audio loop=true时ended事件不监测,audio播放地址一样时不继续播放
当我做一个循环列表播放广播时,有两段文字一样,然后audio就停了,也不监测ended事件,然后我试着当它一样时设置loop=true,这样它就会重复播放,结果loop=true时它就不监测ended事件了,因为这时audio播放文件它是没有播放完毕的。经测试,当有两段播放地址一样时,它会暂停,我们可以动态再播放它if(this.audioUrl == this.audioUrlList[0]){ console.log('与上一条播放一样') this.$ref原创 2020-05-13 10:23:19 · 1664 阅读 · 1 评论 -
vue table中文字 换行
table中文字 换行htmlcsshtmltable column 中加入 type:html 如:<el-table-column prop="date" type:html label="时间"></el-table-column>css.el-table .cell{ white-space: pre-line; }...原创 2020-04-17 15:09:41 · 5116 阅读 · 0 评论