Files
todo-vibe-coding/vue/index.html
wolves bc69ad4e33 refactor: remove unused assets and components, update styles and structure
- Deleted base.css and logo.svg as they were no longer needed.
- Updated main.css with new color palette and improved styles for various components.
- Removed HelloWorld.vue and TheWelcome.vue components to streamline the project.
- Deleted WelcomeItem.vue and associated icon components to clean up unused code.
- Enhanced responsiveness and accessibility across styles and components.
2026-01-25 18:03:15 +08:00

14 lines
330 B
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo Room</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>