Skip to content

Commit

Permalink
refactor: migrate to vue 3 (#47)
Browse files Browse the repository at this point in the history
* update to new slot syntax

* use vite

* use vue 3

* fix issues
  • Loading branch information
nuria-fl authored Aug 26, 2023
1 parent 1f3c2da commit 0213a2f
Show file tree
Hide file tree
Showing 25 changed files with 7,263 additions and 10,149 deletions.
38 changes: 38 additions & 0 deletions index.html
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>
Loading

0 comments on commit 0213a2f

Please sign in to comment.