feat: 实现商品详情页、用户信息页面和搜索功能
refactor: 重构商品列表和主页布局 style: 优化UI组件样式和交互效果 docs: 更新类型定义和路由配置 fix: 修复购物车商品重复问题 perf: 提升页面加载性能和响应速度 test: 添加商品详情页和搜索功能的测试用例 build: 更新依赖项以支持新功能 chore: 清理无用代码和文件
This commit is contained in:
18
src/Views/Order.vue
Normal file
18
src/Views/Order.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<!-- 订单页面 -->
|
||||
<template>
|
||||
<div id="order">
|
||||
<h1>订单</h1>
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { Button, Col, Row, Carousel } from 'ant-design-vue';
|
||||
const router = useRouter()
|
||||
</script>
|
||||
<style scoped>
|
||||
#order {
|
||||
width: 100%;
|
||||
padding: 0 20px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user