logo.vue 276 B

12345678910111213141516171819
  1. <template>
  2. <div>
  3. <img src="/svg/icon-logo.svg" />
  4. </div>
  5. </template>
  6. <script>
  7. </script>
  8. <style lang="scss" scoped>
  9. div {
  10. position: fixed;
  11. top: 20px;
  12. left: 25px;
  13. z-index: 99;
  14. img {
  15. width: 100px;
  16. height: 32px;
  17. }
  18. }
  19. </style>