Newer
Older
urbanLifeline_YanAn / src / components / BackHome / index.vue
@zhangqy zhangqy on 3 Oct 437 bytes first commit
  1. <template>
  2. <div>
  3. <a :href="HomePage">
  4. <svg-icon class-name="home-Filled-icon" icon-class="home-Filled" />
  5. </a>
  6. </div>
  7. </template>
  8.  
  9. <script setup>
  10. //引入全局可配置的数据
  11. let HomePage = peojecTconfiguration.HomePath;
  12. </script>
  13.  
  14. <style lang="scss" scoped>
  15. .home-Filled-icon {
  16. cursor: pointer;
  17. font-size: 28px;
  18. vertical-align: middle;
  19. color: #5a5e66;
  20. line-height: 50px;
  21. margin-bottom: 6px;
  22. }
  23. </style>