-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
24 lines (23 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<script data-main="js/main" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.js"></script>
</head>
<body>
<div id="app" class="container">
<h1>Exchange rate demo</h1>
<div class="input-group mb-3">
<label>Convert:</label><input v-model="amount" type="text" class="form-control">
<label>From:</label><input v-model="currencyBase" type="text" class="form-control">
<label>To:</label> <input v-model="currencyExchange" type="text" class="form-control">
</div>
<display-rate v-bind:currency-base="currencyBase"
v-bind:currency-exchange="currencyExchange"
v-bind:amount="amount">
</display-rate>
</div>
</body>
</html>