Vue中v-model与:value的区别

v-model不可以加其他值

<input type="text" v-model="curAmount">

:value可以加 单位

<input type="text"  :value="curAmount+'元'">
 
@click.stop 阻止事件冒泡
 
原文地址:https://www.cnblogs.com/liubingyjui/p/12851593.html