123456789101112131415161718192021 |
- <template>
- <div class="banner">
- <div class="img"/>
- </div>
- </template>
- <script>
- export default {
- name: 'Banner'
- }
- </script>
- <style scoped type="text/scss" lang="scss">
- .banner{
- margin-top:54px;
- .img{
- height:310px;
- background: url(/img/banner/10.png)no-repeat center center;
- }
- }
- </style>
|