recommend.vue
327 Bytes
<template>
<div>
<div class="title">推荐商品</div>
<slot></slot>
</div>
</template>
<script>
export default {
name: 'Recommend'
};
</script>
<style lang="scss" scoped>
.title {
font-size: 32px;
color: #222;
text-align: left;
margin-bottom: 30px;
font-weight: bold;
margin-left: 40px;
}
</style>