uniapp微信小程序项目开发时,报了一个错误,排查发现有一段代码写错了,记录一下。
Bad attr `data-event-opts` with message
错误代码
<input v-model="data.NeatWeight+'t'" disabled="" type="text"
placeholder-style="font-size:32rpx;color: #D5D5E0;" />
解决方法
<input :value="data.NeatWeight+'t'" disabled="" type="text"
placeholder-style="font-size:32rpx;color: #D5D5E0;" />