之前的做法一直是在 created 钩子之后手动调用一次created() { this.fetchText(); }, watch: { text: 'fetchText', }后来在翻阅文档的时候发现一个属性 immediate 这样在初始化的时候也会触发——》该回调将会在侦听开始之后被立即调用watch: { text: { handler: 'fetchText', immediate: true } }