-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
30 lines (29 loc) · 990 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue Quick Search</title>
<link rel="stylesheet" href="assets/css/style.css?v3" />
<link
href="//fonts.googleapis.com/css2?family=Noto+Sans&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section class="content">
<div id="app">
<div class="form">
<label>Type a country name</label>
<input type="text" v-model="item" /><br />
<p>Source Code: <a href='https://github.com/hasinhayder/vue-search' target="_blank">Vue 3 Quick Search With External API & Two Way Data Binding</a></p>
</div>
<ul class="items">
<li v-for="country in filteredCountries">{{country.country}}</li>
</ul>
</div>
</section>
<script src="//unpkg.com/vue@next"></script>
<script src="assets/js/main.js?v3"></script>
</body>
</html>