Product.vue 633 B

12345678910111213141516171819202122232425262728293031323334
  1. <!--
  2. * @Author: wanglj wanglijie@dashoo.cn
  3. * @Date: 2025-01-09 14:34:23
  4. * @LastEditors: wanglj
  5. * @LastEditTime: 2025-01-13 15:17:46
  6. * @Description: file content
  7. * @FilePath: \labsop_website\src\views\Product.vue
  8. -->
  9. <template>
  10. <div class="product">
  11. <Banner :img="require('@/assets/img/education-banner.png')" />
  12. <div class="product-container"></div>
  13. </div>
  14. </template>
  15. <script>
  16. import Banner from "../components/Banner";
  17. export default {
  18. data() {
  19. return {
  20. };
  21. },
  22. components: {
  23. Banner
  24. },
  25. created() {}
  26. };
  27. </script>
  28. <style lang="scss" scoped>
  29. .product-container {
  30. min-height: 500px;
  31. }
  32. </style>