banner.vue 324 B

123456789101112131415161718192021
  1. <template>
  2. <div class="banner">
  3. <div class="img"/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'Banner'
  9. }
  10. </script>
  11. <style scoped type="text/scss" lang="scss">
  12. .banner{
  13. margin-top:54px;
  14. .img{
  15. height:310px;
  16. background: url(/img/banner/10.png)no-repeat center center;
  17. }
  18. }
  19. </style>