Header.vue 606 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="header">
  3. <p>延吉市数字应急自然灾害综合风险监管平台</p>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'Header',
  9. props: {
  10. }
  11. }
  12. </script>
  13. <!-- Add "scoped" attribute to limit CSS to this component only -->
  14. <style scoped>
  15. .header{
  16. position: absolute;
  17. background: url("../assets/images/yj-topbg.png") no-repeat center;
  18. width: 100%;
  19. height: 180px;
  20. top:0px;
  21. left: 0px;
  22. z-index: 2;
  23. }
  24. .header p{
  25. color: #fff;
  26. line-height: 60px;
  27. font-family: "myfont";
  28. font-size: 36px;
  29. letter-spacing: 1px;
  30. text-align: center;
  31. }
  32. </style>