-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 862 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
<html lang="zh-TW" itemscope itemtype="https://schema.org/WebPage">
<head>
<meta charset="UTF-8">
<title>Demo: News Highlight</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header></header>
<div id="app">
<news v-for="item in data" v-bind:news="item"></news>
<div id="source">
<a href="http://news.cnyes.com/news/id/3611086">原文網址</a>
</div>
<section class="getName">
<input placeholder="輸入 你/妳 的名字" v-model="name">
</section>
</div>
<footer></footer>
</body>
<script src="https://www.gstatic.com/firebasejs/3.3.0/firebase.js"></script>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="assets/js/components/news.js"></script>
<script src="assets/js/config.js"></script>
<script src="assets/js/data/news.js"></script>
<script src="assets/js/main.js"></script>
</html>