forked from logue/vue-codemirror6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 962 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link rel="icon" href="/favicon.ico" />
<title>Vue CodeMirror6 Demo</title>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-2Y2FW3QEG4"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-2Y2FW3QEG4');
</script>
</head>
<body class="h-100 bg-body text-body">
<div id="app" class="d-flex flex-column h-100">
We're sorry but this site doesn't work properly without JavaScript
enabled. Please enable it to continue.
</div>
<script type="module" src="/src-docs/main.ts"></script>
</body>
</html>