forked from Show-Me-the-Code/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
43 lines (39 loc) · 1014 Bytes
/
base.html
File metadata and controls
43 lines (39 loc) · 1014 Bytes
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
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<!--bootstrap-->
<link rel="stylesheet" href="/static/css/bootstrap.css">
<link rel="stylesheet" href="/static/css/bootstrap-theme.css">
<script type="static/js/jquery.js"></script>
<script type="static/js/bootstrap.js"></script>
<!--vue-->
<script type="static/js/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<title>First bootstrap page</title>
</head>
<body>
<nav class="navbar navbar-inverse">
<ul class="navbar-header">
<a class="navbar-brand" href="#">First bootstrap page</a>
</ul>
</div>
</nav>
<div class="container container-center jumbotron">
<div class="col-sm-4 col-sm-offset-4">
<div id="app" class="from-group">
<p class="form-control" v-text="aaa"></p>
<span>input here:</span>
<input class="form-control" v-model="aaa">
</div>
</div>
</div>
<script type="text/javascript">
var vm = new Vue({
el: '#app',
data: {
aaa: '',
}
})
</script>
</body>
</html>>