vue $emit 用法时间:2023-03-08 18:29:431、父组件可以用props传递给子组件。 2、子组件可以利用$emit触发父组件事件。 vm.$emit('父组件方法',参数); vm.$on(event,fn); $on监听event事件后运行fn