Header.vue 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <div class="header">
  3. <div>
  4. <img src="@/assets/img/logo.png" alt="">
  5. <router-link to="/helps" class="help">帮助文档</router-link>
  6. </div>
  7. <a href="//cloud.cocorobo.cn">
  8. <span>CocoClass</span>
  9. </a>
  10. </div>
  11. </template>
  12. <script>
  13. </script>
  14. <style lang="less" scoped>
  15. .header {
  16. display: flex;
  17. flex-direction: row;
  18. align-items: center;
  19. justify-content: space-between;
  20. color: rgba(46, 90, 168, 1);
  21. font-size: 16px;
  22. font-weight: 600;
  23. padding: 5px 10%;
  24. border-bottom:1px solid #eee;
  25. div {
  26. display: flex;
  27. flex-direction: row;
  28. align-items: center;
  29. img{
  30. margin-right: 10px;
  31. }
  32. }
  33. .help {
  34. vertical-align: middle
  35. }
  36. span {
  37. border: 2px solid rgba(46, 90, 168, 1);
  38. padding: 4px 12px;
  39. border-radius: 100px;
  40. }
  41. a {
  42. color: rgba(46, 90, 168, 1);
  43. }
  44. }
  45. </style>