-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (34 loc) · 1 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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link href="flatBlueSeries_min.css" rel="stylesheet"></link>
<script src="jquery-1.8.3.min.js"></script>
</head>
<body>
<div id="componentBox"></div>
<div id="box">
{{aa}}
<component-tab :tab-list="[{text:'能耗分析'}, {text:'能耗对比'}]"></component-tab>
</div>
</body>
</html>
<script>
$(function () {
$('#componentBox').load('template.html', function () {
var demo = new Vue({
el: '#box',
data: {
aa: '组件demo',
},
});
});
console.log('33')
})
</script>
<script src="vue-1.0.24.min.js" type="text/javascript"></script>
<script src="component.js" type="text/javascript"></script>
<script src="model.js"></script>