'add'
parent
bb14963ef6
commit
390def3a9b
@ -0,0 +1,39 @@
|
||||
<template>
|
||||
<div class="testCom">
|
||||
<input type="text" v-model="message" />
|
||||
<button @click="click">Send</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "testCom",
|
||||
data() {
|
||||
return {
|
||||
message: "我是来自子组件的消息"
|
||||
};
|
||||
},
|
||||
created() {},
|
||||
mounted() {},
|
||||
computed: {},
|
||||
methods: {
|
||||
click() {
|
||||
this.$emit("childFn", this.message);
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
@import "../assets/styles/variables.less";
|
||||
.testCom {
|
||||
//background: @bgColor;
|
||||
input {
|
||||
border: 1px solid red;
|
||||
}
|
||||
// button {
|
||||
// width: 200px;
|
||||
// height: 100px;
|
||||
// }
|
||||
}
|
||||
</style>
|
@ -0,0 +1,38 @@
|
||||
<template>
|
||||
<div class="test">
|
||||
<test-com @childFn="parentFn"></test-com>
|
||||
<br/> 子组件传来的值 : {{message}}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import TestCom from "@/components/testCom";
|
||||
|
||||
export default {
|
||||
name: "test",
|
||||
components: {
|
||||
TestCom
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
message: ""
|
||||
};
|
||||
},
|
||||
created() {},
|
||||
mounted() {},
|
||||
watch: {},
|
||||
computed: {},
|
||||
methods: {
|
||||
parentFn(payload) {
|
||||
this.message = payload;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
@import "../assets/styles/variables.less";
|
||||
.test {
|
||||
//background: @bgColor;
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue