# fastapi_vue_demo **Repository Path**: windstarry/fastapi_vue_demo ## Basic Information - **Project Name**: fastapi_vue_demo - **Description**: 学习fastAPI和vue3进行前后端通信的demo - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-04-05 - **Last Updated**: 2023-04-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 学习fastAPI和Vue前后端通信的案例 结合Blog和仓库代码,方便学习 1. [关于FastAPI与Vue3的通信](https://windstarry.gitee.io/windstarry/learn/python/关于FastAPI与Vue3的通信.html) 2. [FastAPI对数据库的增删改查](https://windstarry.gitee.io/windstarry/learn/python/FastAPI对数据库的增删改查.html) 3. [基于Vue3和FastAPI对数据库进行操作](https://windstarry.gitee.io/windstarry/learn/python/基于Vue3和FastAPI对数据库进行操作.html) ``` fastapi_vue_demo ├─ backend │ ├─ crud.py │ ├─ database.py │ ├─ main.py │ ├─ models.py │ ├─ schemas.py │ ├─ __init__.py │ └─ __pycache__ │ ├─ crud.cpython-310.pyc │ ├─ database.cpython-310.pyc │ ├─ main.cpython-310.pyc │ ├─ models.cpython-310.pyc │ ├─ schemas.cpython-310.pyc │ └─ __init__.cpython-310.pyc ├─ frontend │ ├─ .vscode │ │ └─ extensions.json │ ├─ index.html │ ├─ package.json │ ├─ public │ │ └─ vite.svg │ ├─ README.md │ ├─ src │ │ ├─ App.vue │ │ ├─ assets │ │ │ └─ vue.svg │ │ ├─ components │ │ │ ├─ Books.vue │ │ │ └─ HelloWorld.vue │ │ ├─ main.js │ │ └─ style.css │ ├─ vite.config.js │ └─ yarn.lock ├─ README.md └─ sql_app.db ```