Files
vue3-basis/index.html
Flux_bot 46b6a87505 feat: Vue 3 Basis mit TailwindCSS, PrimeVue, i18n und Dark/Light Mode
- Vue 3 + Vite Setup
- TailwindCSS mit Dark Mode Support
- PrimeVue 4 mit Aura Theme
- vue-i18n (Deutsch/Englisch)
- Vue Router + Pinia
- Responsive Navbar mit Theme Toggle & Language Switcher
2026-02-10 22:23:30 +00:00

14 lines
333 B
HTML

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