[Vue warn]: Error compiling template: <div id="app"> <ul class="loginul"> <li> 登陆账号:<input type="text" id="userCode" value="{{user.userCode}}" name="user.userCode"> </li> <li>登录密码:<input type="password" id="userPassword" value="" name="user.userPassword"> </li> <li><input type="button" value="提交" id="userSubmit" name="user.submit"> </li> </ul> </div> - value="{{user.userCode}}": Interpolation inside attributes has been removed. Use v-bind or the colon shorthand instead. For example, instead of <div id="{{ val }}">, use <div :id="val">.

 

反正就是类似的信息提示了一大波。

说的是套模板套错了。我是在不该写的地方多写了东西。

<input type="text" id="userCode"
                       value="{{user.userCode}}" name="user.userCode">

在这个里面,以我推测,在input中是不可以使用vue标签{{ msg }}的,要通过v-model,改成下面的就没有什么问题了。

<input type="password" id="userPassword"
                            v-model="user.password" value=""     name="user.userPassword">
Logo

前往低代码交流专区

更多推荐