Blame view

apps/pages/article/components/detail/recommend.vue 327 Bytes
htoooth authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<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>