Newer
Older
DH_Apicture / src / components / BackHome / index.vue
@zhangqy zhangqy 27 days ago 437 bytes first commit
<template>
  <div>
    <a :href="HomePage">
      <svg-icon class-name="home-Filled-icon" icon-class="home-Filled" />
    </a>
  </div>
</template>

<script setup>
//引入全局可配置的数据
let HomePage = peojecTconfiguration.HomePath;
</script>

<style lang="scss" scoped>
.home-Filled-icon {
  cursor: pointer;
  font-size: 28px;
  vertical-align: middle;
  color: #5a5e66;
  line-height: 50px;
  margin-bottom: 6px;
}
</style>