mirror of
https://github.com/cruip/vuejs-admin-dashboard-template.git
synced 2026-02-04 13:42:27 +08:00
23 lines
667 B
HTML
23 lines
667 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Vite App</title>
|
|
</head>
|
|
|
|
<body class="font-inter antialiased bg-slate-100 dark:bg-slate-900 text-slate-600 dark:text-slate-400">
|
|
<script>
|
|
if (localStorage.getItem('sidebar-expanded') == 'true') {
|
|
document.querySelector('body').classList.add('sidebar-expanded');
|
|
} else {
|
|
document.querySelector('body').classList.remove('sidebar-expanded');
|
|
}
|
|
</script>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
|
|
</html> |