From e3a33c6c15735d727237c5e61999af5911087270 Mon Sep 17 00:00:00 2001 From: yyzcl Date: Mon, 25 Jan 2021 17:57:59 +0800 Subject: [PATCH] fix code demo --- docs/zh/dev-guide/plugin-dev.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zh/dev-guide/plugin-dev.md b/docs/zh/dev-guide/plugin-dev.md index 831b6a9fa9..3ab73d4c06 100644 --- a/docs/zh/dev-guide/plugin-dev.md +++ b/docs/zh/dev-guide/plugin-dev.md @@ -347,7 +347,7 @@ api.registerCommand( description: 'Write a greeting to the console', usage: 'vue-cli-service greet' }, - () = > { + () => { console.log(`👋 Hello`) } )