banner.vue 292 B

1234567891011121314151617
  1. <template>
  2. <div class="banner"></div>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'BannerView'
  7. }
  8. </script>
  9. <style type="text/scss" lang="scss" scoped>
  10. .banner{
  11. height:400px;
  12. background: url(/images/supplier/banner.png)no-repeat center center;
  13. margin-bottom:15px;
  14. }
  15. </style>