From 34b24a63e505c73418aba6e2ec77c6e7dad6011f Mon Sep 17 00:00:00 2001 From: Alexander Sokolov Date: Sun, 4 Oct 2020 00:53:35 +0300 Subject: [PATCH] Update component-basics.md --- src/guide/component-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/component-basics.md b/src/guide/component-basics.md index b4aa0fc515..3965108ad7 100644 --- a/src/guide/component-basics.md +++ b/src/guide/component-basics.md @@ -234,7 +234,7 @@ Then the child component can emit an event on itself by calling the built-in [** ``` -Thanks to the `v-on:enlarge-text="postFontSize += 0.1"` listener, the parent will receive the event and update `postFontSize` value. +Thanks to the `@enlarge-text="postFontSize += 0.1"` listener, the parent will receive the event and update `postFontSize` value.

See the Pen