摘要:
1. vue创建项目后,在入口文件main.js中使用template模板,项目启动时报错You are using the runtime-only build of Vue where the template compiler is not available. Either pre-comp 阅读全文
摘要:
消息订阅与发布pubsub:实现任意组件间通信 使用步骤: ① 安装pubsub-js:npm i pubsub-js ② 引入:import pubsub from 'pubsub-js' ③ 订阅消息:使用pubsub自带的subscribe方法 methods: { // subscribe的 阅读全文
摘要:
组件自定义事件:组件间通信方式(适用于子组件传值给父组件) 使用场景:A为父组件,B为子组件。若B想给A传值,则需在A中给B绑定事件。事件的回调要在父组件A中! 绑定:均在父组件中进行绑定,methods进行定义方法 ① v-on/@xxx:直接进行绑定,名称为methods中方法名 <Demo v 阅读全文