Newer
Older
CloudBrainNew / src / components / text / title / Title3.vue
StephanieGitHub on 4 Feb 2021 603 bytes first commit
<template>
  <div class="litter-title">
    <span><slot></slot></span>
    <img :src="require('@/assets/images/title02.png')" />
  </div>
</template>
<script>
export default {
  name: 'Title3',
  props: {
    title: String
  }
}
</script>

<style scoped>
  /*列标题*/
  .litter-title {
    padding-left: .08rem;
    display: flex;
    height: .1rem;
    overflow: hidden;
    margin: 5px 0px;
  }
  .litter-title span {
    color:#eba14b;
    font-size: 0.06rem;
    font-weight: bold;

  }
  .litter-title img {
    margin-left: .08rem;
    height: .07rem;
    vertical-align: -.01rem;
  }
</style>