1.vue 423 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="advertisementBox">
  3. <img src="@/assets/template/component/style1imgTitle.png" />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. },
  10. data() {
  11. return {
  12. };
  13. },
  14. methods: {
  15. },
  16. mounted() {
  17. },
  18. };
  19. </script>
  20. <style scoped lang="less">
  21. .advertisementBox {
  22. img {
  23. width: 1200px;
  24. height: 90px;
  25. display: block;
  26. }
  27. }
  28. </style>