forked from lin-xin/notepad
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
24 lines (24 loc) · 807 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>notepad</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="keywords" content="vue.js, vuex, localStorage, todolist, vue2" />
<meta name="description" content="基于vue + vuex + localStorage开发的本地记事本" />
<link href="favicon.ico" rel="SHORTCUT ICON">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?33379f2bc4b2b9c80ce94cca9e0683da";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>