parent
8d9e281858
commit
e87e93bdea
9 changed files with 142 additions and 2 deletions
@ -0,0 +1,32 @@ |
|||||||
|
<template> |
||||||
|
<div class="app"> |
||||||
|
<h1>{{ msg }}</h1> |
||||||
|
<School/> |
||||||
|
<Student/> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import School from "./components/School.vue"; |
||||||
|
import Student from "./components/Student.vue"; |
||||||
|
|
||||||
|
export default { |
||||||
|
name: "App", |
||||||
|
components: { |
||||||
|
School, |
||||||
|
Student |
||||||
|
}, |
||||||
|
data() { |
||||||
|
return { |
||||||
|
msg: "Hello:", |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style> |
||||||
|
.app { |
||||||
|
background-color: gray; |
||||||
|
padding: 15px |
||||||
|
} |
||||||
|
</style> |
After Width: | Height: | Size: 6.7 KiB |
@ -0,0 +1,37 @@ |
|||||||
|
<template> |
||||||
|
<div class="school"> |
||||||
|
<h2>学校名称:{{ name }}</h2> |
||||||
|
<h2>学校地址:{{ address }}</h2> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
|
||||||
|
export default { |
||||||
|
name: "School", |
||||||
|
data() { |
||||||
|
return { |
||||||
|
name: "修仙学院", |
||||||
|
address: "长白山", |
||||||
|
} |
||||||
|
}, |
||||||
|
mounted() { |
||||||
|
console.log(this) |
||||||
|
console.log(this, this.$bus) |
||||||
|
this.$bus.$on('hello', (data)=>{ |
||||||
|
console.log('这是School组件,收到了数据', data) |
||||||
|
}) |
||||||
|
}, |
||||||
|
beforeDestroy() { |
||||||
|
this.$bus.off('hello') |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style scoped> |
||||||
|
.school { |
||||||
|
background-color: skyblue; |
||||||
|
padding: 15px |
||||||
|
} |
||||||
|
</style> |
||||||
|
|
@ -0,0 +1,33 @@ |
|||||||
|
<template> |
||||||
|
<div class="student"> |
||||||
|
<h2>学生名称:{{ name }}</h2> |
||||||
|
<h2>学生年龄:{{ age }}</h2> |
||||||
|
<button @click="sendStudentName">发送数据给School组件</button> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
export default { |
||||||
|
name: "Student", |
||||||
|
data() { |
||||||
|
return { |
||||||
|
name: "小强", |
||||||
|
age: 18 |
||||||
|
} |
||||||
|
}, |
||||||
|
methods:{ |
||||||
|
sendStudentName() { |
||||||
|
this.$bus.$emit('hello', this.name) |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="css" scoped> |
||||||
|
.student { |
||||||
|
background-color: pink; |
||||||
|
padding: 15px; |
||||||
|
margin-top: 20px; |
||||||
|
} |
||||||
|
</style> |
||||||
|
|
@ -0,0 +1,19 @@ |
|||||||
|
// 引入Vue
|
||||||
|
import Vue from "vue"; |
||||||
|
// 引入App
|
||||||
|
import App from "./App"; |
||||||
|
|
||||||
|
// 设置Vue
|
||||||
|
Vue.config.productionTip = false |
||||||
|
|
||||||
|
|
||||||
|
// 实例化Vue
|
||||||
|
new Vue({ |
||||||
|
components: { |
||||||
|
App |
||||||
|
}, |
||||||
|
render: h => h(App), |
||||||
|
beforeCreate() { |
||||||
|
Vue.prototype.$bus = this // 安装全局事件总线
|
||||||
|
} |
||||||
|
}).$mount('#app') |
Loading…
Reference in new issue