# vue3列表小案例 **Repository Path**: pei-ming-wu/vue3-list-case ## Basic Information - **Project Name**: vue3列表小案例 - **Description**: 使用vue3练习接口实现列表的渲染,编辑和删除的功能 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-06-20 - **Last Updated**: 2023-12-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: vue3 ## README # 启动项目 1. npm install 2. npm run dev # 接口说明 ## 获取列表 ```javascript axios.get('/list') ``` ## 删除 ```javascript axios.delete(`/del/${id}`) ``` ## 编辑 ```javascript axios.patch(`/edit/${id}`, { name: '姓名', place: '籍贯', }) ```