Subscribe on changes!

在插值语法}}前的注释不能使用

avatar
Jun 5th 2023
<template>
  <h1>{{
    1/*123*/
    }}
  </h1>
</template>

you can use /**/

avatar
Jun 5th 2023
<template>
  <h1>{{
    1/*123*/
    }}
  </h1>
</template>

如果单从能实现需求上,确实可以选择你说的这种方式来解决这个问题 但是从健壮性来看,这个在开发时给人的直观感受是没有问题的,但是却得到一个error,并且无法定位到错误位置,一时间会给人不知所措的感觉,修改成本不大https://github.com/vuejs/core/pull/8493 image