学习笔记

Goods页面里面:

<shopcart  :delivery-price="seller.deliveryPrice"  :min-price="seller.minPrice"></shopcart>

报错  cannot read property 'deliveryPrice'

        cannot read property 'minPrice'

报错原因及解决方法:

shopcart页面里面

<script></script>里面export的props属性需要添加deliveryPrice,minPrice

一层一层传递,由root vue传给Goods组件,然后由Goods组件传给shopcart组件

原文地址:https://www.cnblogs.com/hustxychen/p/11073786.html