# 自定义事件 子组件comp定义如下: ```
点击这里查看隐藏文本 hello world
``` ``` /* comp.css */ .item { width: 700px; flex-direction: column; height: 300px; align-items: center; margin-top: 100px; } .text-style { font-weight: 500; font-family: Courier; font-size: 40px; } ``` ``` // comp.js export default { data: { showObj: false, }, childClicked () { this.$emit('eventType1'); this.showObj = !this.showObj; }, } ``` 引入子组件的示例如下: ```
``` ``` /* xxx.css */ .container { background-color: #f8f8ff; flex: 1; flex-direction: column; align-content: center; } ``` ``` // xxx.js export default { textClicked () {}, } ```