breadcrumb.vue 658 Bytes
Newer Older
xingling's avatar
xingling committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
<template>
  <el-breadcrumb separator-class="el-icon-arrow-right">
    <el-breadcrumb-item class="crumb_home_icon" :to="{ path: '/home' }"></el-breadcrumb-item>
  </el-breadcrumb>
</template>
<script>
  export default {
    data () {
      return {
        path: '',
      }
    },
  }
</script>
<style scoped>
.el-breadcrumb{
  width: calc(100% - 20px);
	height: 40px;
	background-color: #ffffff;
  padding-left:20px;
}
.el-breadcrumb__item{
  margin:11px 0;
  display:inline-block;
}
.crumb_home_icon{
  width:18px;
  height:18px;
  background:url(../assets/images/summary_hos_selected.png) no-repeat center center;
  background-size:18px 18px;
}
</style>