Files
Auto_Bangumi/.vscode/launch.json
zthxxx 544dda81c4 feat: 番剧搜索框接口使用和交互完成
- 三种搜索触发来源
  - 输入中 debounce 600ms 后触发搜索
  - 按回车或点击搜索 icon 按钮后触发搜索
  - 切换 provider 源站时触发搜索
- 渲染的番剧信息列表样式待调整
- 搜索框 placeholder / provider 展示样式/i18n 待调整
2023-09-07 00:54:17 +08:00

20 lines
530 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Dev Backend",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}/backend/src",
"program": "main.py",
"env": {
"HOST": "127.0.0.1",
},
"console": "integratedTerminal",
"justMyCode": true
}
]
}