[Vue warn]: Property or method "amount" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.
(found in <Root>) at js/vue.js:634
检查new Vue时里面的id和data变量名称与html标签里的id、变量名称是不是相同。如果不相同就是低级错误,那么相同会不会也报这个错呢?可以的,检查之前是不是已经有new Vue时id与这一次报错的id相同,或者之前的那个id对应的标签包含了此次的标签。如果是,怎么解决这个坑呢,把此次的变量加到之前的里面,或者把之前的标签范围减小,更贴近对应到之前的变量位置。