banner.vue 333 B

12345678910111213141516171819
  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. border-radius:5px;
  15. overflow: hidden;
  16. }
  17. </style>