(e)
| 78 | # 处理 Vue Router 的 HTML5 History 模式 |
| 79 | @app.errorhandler(404) |
| 80 | def fallback(e): |
| 81 | return send_from_directory(app.static_folder, 'index.html') |
| 82 | else: |
| 83 | @app.route('/') |
| 84 | def index(): |
nothing calls this directly
no outgoing calls
no test coverage detected