VideoConcat/wails/assets/index.html
2026-01-10 19:00:52 +08:00

52 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>视频拼接工具</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: linear-gradient(to bottom, #fefefe, #ededef);
overflow: hidden;
}
#app {
width: 100vw;
height: 100vh;
}
</style>
<script type="module" crossorigin src="/assets/index-B-ziti-G.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-dkqEFoMI.css">
</head>
<body>
<div id="app"></div>
<script>
// 添加调试信息,检查页面是否加载
console.log('HTML 页面已加载');
console.log('等待 JavaScript 模块加载...');
// 检查资源是否加载
window.addEventListener('error', function(e) {
console.error('资源加载错误:', e.filename, e.message);
}, true);
// 延迟检查 Vue 应用是否挂载
setTimeout(function() {
const app = document.getElementById('app');
if (app && app.innerHTML.trim() === '') {
console.error('Vue 应用未正确挂载到 #app 元素');
} else {
console.log('Vue 应用可能已挂载');
}
}, 2000);
</script>
</body>
</html>