-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathHelloWorld.vue
More file actions
51 lines (48 loc) · 943 Bytes
/
HelloWorld.vue
File metadata and controls
51 lines (48 loc) · 943 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
44
45
46
47
48
49
50
51
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<!-- 组件通信 -->
<!-- <Communication></Communication> -->
<!-- 表单 -->
<FormExample></FormExample>
<!-- 插槽 -->
<!-- <SlotExample></SlotExample> -->
<!-- 递归 -->
<!-- <TreeExample></TreeExample> -->
</div>
</template>
<script>
import Communication from '@/components/communication';
import FormExample from '@/components/form';
import SlotExample from '@/components/slots';
import TreeExample from '@/components/recursion';
export default {
name: 'HelloWorld',
props: {
msg: String
},
components: {
Communication,
FormExample,
SlotExample,
TreeExample
},
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>