-
Notifications
You must be signed in to change notification settings - Fork 1
/
01_vue中的局部组件.html
125 lines (108 loc) · 1.71 KB
/
01_vue中的局部组件.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
padding: 0;
margin: 0;
}
.main{
width: 100%;
}
.head{
width: 100%;
height: 80px;
background-color: purple;
}
.main2{
width: 100%;
height: 1000px;
}
.main2 .aside{
float: left;
width: 30%;
height: 100%;
background-color: green;
}
.main2 .content{
float: left;
width: 70%;
height: 100%;
background-color: red;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="text/javascript" src="../vue.min.js"></script>
<script type="text/javascript">
// 全局组件
// 第一个参数是组件的名字,第二个参数是options
// bootstrap 下拉菜单 html+css+js
Vue.component('Vbtn',{
template:`
<button>按钮</button>
`
});
var Vcontent = {
template:`
<div class='content'>我是内容组件
<Vbtn />
</div>
`
}
var Vaside = {
template:`
<div class='aside'>我是侧边栏组件
<Vbtn></Vbtn>
</div>
`
};
// 局部组件:声子 挂子 用子
var Vheader = {
template:`
<div class='head'>
我是头部组件
<Vbtn></Vbtn>
</div>
`
};
// 1.声明局部组件 App入口组件
var App = {
template:`
<div class='main'>
<Vheader />
<div class = 'main2'>
<Vaside />
<Vcontent />
</div>
</div>
`,
data(){
return {
}
},
components:{
Vheader,
Vaside,
Vcontent
}
};
new Vue({
el:'#app',
// 3.使用
template:'<App></App>',
data(){
return {
}
},
// 2.挂载组件
components:{
App
}
});
</script>
</body>
</html>