warning信息:component lists rendered with v-for should have explicit keys. See https://vuejs.org/guide/list.html#key for more info. 在v-for中绑定key值可解决: <router-link :to="{path: goods.url}" v-for="(goods,index) in ftg.goods" :key=index t…
You can add computed properties to a component to calculate a property on the fly. The benefit of this over invoking a method is that computed properties are cached based on their dependencies. <template> <section class="container">…