feat(app): migrate auth pages to Vue SPA (stage 2)

This commit is contained in:
2025-12-13 23:30:51 +08:00
parent 34f44eed3e
commit 324e0d614a
35 changed files with 1175 additions and 85 deletions

View File

@@ -11,7 +11,11 @@
<body>
<noscript>该页面需要启用 JavaScript 才能使用。</noscript>
<div id="app"></div>
{% if app_spa_initial_state is defined and app_spa_initial_state %}
<script>
window.__APP_INITIAL_STATE__ = {{ app_spa_initial_state | tojson }};
</script>
{% endif %}
<script type="module" src="{{ url_for('serve_static', filename=app_spa_js_file) }}"></script>
</body>
</html>