| 12345678910111213141516171819 |
- <template>
- <div class="banner"></div>
- </template>
- <script>
- export default {
- name: 'BannerView'
- }
- </script>
- <style type="text/scss" lang="scss" scoped>
- .banner{
- height:400px;
- background: url(/images/supplier/banner.png)no-repeat center center;
- margin-bottom:15px;
- border-radius:5px;
- overflow: hidden;
- }
- </style>
|