-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvue_1.html
More file actions
34 lines (32 loc) · 988 Bytes
/
vue_1.html
File metadata and controls
34 lines (32 loc) · 988 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
<!DOCTYPE html>
<html lang="en" xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
<title>vue_1</title>
<script type="text/javascript" src="jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="vue.js"></script>
<script type="text/javascript" src="vue_1.js"></script>
<link rel="stylesheet" href="one.css">
</head>
<body>
<!--<div id="example">-->
<!--<my-component></my-component>-->
<!--<my-component1></my-component1>-->
<!--</div>-->
<!--<div id="example1">-->
<!--<my-component></my-component>-->
<!--</div>-->
<!--<div id="example-2">-->
<!--<simple-counter></simple-counter>-->
<!--<simple-counter></simple-counter>-->
<!--<simple-counter></simple-counter>-->
<!--</div>-->
<div id='example'>
<input v-model="parentMsg" type="color">
<br>
<child v-bind:my-message="parentMsg"></child>
</div>
<input type='date'/>
</body>
</html>