这个小提琴坏了。删除oops功能以修复它。当我需要oops功能时该怎么办? https://jsfiddle.net/mvvapzub/1/
oops(e) {
}
这是一个具有防暴功能的小提琴(isFolder)并没有被打破。 https://jsfiddle.net/walkermatt/1vdo5pmf/1/
答案 0 :(得分:0)
通过缩进脚本标记内的所有内容来修复
https://jsfiddle.net/mvvapzub/3/
/// this does NOT work
<script type="riot/tag">
<app>
<table>
...
</table>
...
oops(e) {
return true
}
</app>
</script>
/// this works
<script type="riot/tag">
<app>
<table>
...
</table>
...
oops(e) {
return true
}
</app>
</script>