写一个推荐页面recommend.vue
预期:在shop.vue和details.vue中显示
在上述两个页面上写到:
script中:
import Recomm from 'pages/recommend/recommend.vue';
export default {
data() {
return {
}
},
components: {
Recomm
},
…………
template中
在需要插入的位置写:
<!-- 更多推荐商品 -->
<Recomm></Recomm>