-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update to new slot syntax * use vite * use vue 3 * fix issues
- Loading branch information
Showing
25 changed files
with
7,263 additions
and
10,149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Live</title> | ||
<meta charset="utf-8" /> | ||
<meta name="mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="default" /> | ||
<link rel="apple-touch-icon" sizes="120x120" href="/logo-120.png" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, minimal-ui" | ||
/> | ||
<link rel="shortcut icon" sizes="48x48" href="/logo-48.png" /> | ||
<meta name="theme-color" content="#f60" /> | ||
<link rel="manifest" href="/manifest.json" /> | ||
<style> | ||
#skip a { | ||
position: absolute; | ||
left: -10000px; | ||
top: auto; | ||
width: 1px; | ||
height: 1px; | ||
overflow: hidden; | ||
} | ||
#skip a:focus { | ||
position: static; | ||
width: auto; | ||
height: auto; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="skip"><a href="#app">skip to content</a></div> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.