12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <div class="advertisementBox">
- <img src="@/assets/template/component/style1imgTitle.png" />
- </div>
- </template>
- <script>
- export default {
- props: {
-
- },
- data() {
- return {
-
- };
- },
- methods: {
-
- },
- mounted() {
-
- },
- };
- </script>
- <style scoped lang="less">
- .advertisementBox {
- img {
- width: 1200px;
- height: 90px;
- display: block;
- }
- }
- </style>
|