| 12345678910111213141516171819202122232425262728293031323334 |
- <!--
- * @Author: wanglj wanglijie@dashoo.cn
- * @Date: 2025-01-09 14:34:23
- * @LastEditors: wanglj
- * @LastEditTime: 2025-01-13 15:17:46
- * @Description: file content
- * @FilePath: \labsop_website\src\views\Product.vue
- -->
- <template>
- <div class="product">
- <Banner :img="require('@/assets/img/education-banner.png')" />
- <div class="product-container"></div>
- </div>
- </template>
- <script>
- import Banner from "../components/Banner";
- export default {
- data() {
- return {
- };
- },
- components: {
- Banner
- },
- created() {}
- };
- </script>
- <style lang="scss" scoped>
- .product-container {
- min-height: 500px;
- }
- </style>
|