learnin-some-vue/lessons/index.html

23 lines
443 B
HTML
Raw Permalink Normal View History

2018-04-13 14:54:53 +00:00
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
2018-04-14 04:48:04 +00:00
<script src="../vue.js"></script>
2018-04-13 18:55:09 +00:00
<link rel="stylesheet" href="style.css">
2018-04-13 14:54:53 +00:00
</head>
<body>
2018-04-17 03:19:06 +00:00
<div id='app1'>
2018-04-17 03:10:28 +00:00
<ts-cmp></ts-cmp>
2018-04-17 03:16:04 +00:00
<hr>
<ts-cmp></ts-cmp>
2018-04-17 03:10:28 +00:00
</div>
2018-04-17 03:19:06 +00:00
<div id='app2'>
<ts-cmp></ts-cmp>
<hr>
<ts-cmp></ts-cmp>
2018-04-13 14:54:53 +00:00
</div>
<script src="app.js" charset="utf-8"></script>
</body>
</html>