-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
39 lines (33 loc) · 1.6 KB
/
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
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Location Picker | Vue.js</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400|Dosis:300">
<link rel="stylesheet" type="text/css" href="demo/assets/style.css">
</head>
<body>
<location-picker :place.sync="place"></location-picker>
<div class="container">
<div class="row">
<span class="location" v-if="place">{{ place.formatted_address }}</span>
</div>
<div class="row">
<div class="column social">
<a href="https://twitter.com/share" class="twitter-share-button" data-text="Location Picker - A @vuejs component" data-via="pespantelis">Tweet</a>
<iframe src="https://ghbtns.com/github-btn.html?user=pespantelis&repo=vue-location-picker&type=star&count=true" frameborder="0" scrolling="0" width="78px" height="20px"></iframe>
</div>
<div class="column">
<h1>Location Picker</h1>
<h4>Vue.js component</h4>
</div>
<div class="column">
<a href="https://github.com/pespantelis/vue-location-picker" class="button">Source on GitHub</a>
</div>
</div>
</div>
<img class="google" src="demo/assets/google.png">
<script src="demo/build/build.js"></script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</body>
</html>