From 9bc5fb18fedb7a33e85bde5c6a5b5fbcec375ae2 Mon Sep 17 00:00:00 2001 From: Kid <44045911+kidonng@users.noreply.github.com> Date: Sat, 19 Sep 2020 09:39:04 +0800 Subject: [PATCH] Remove duplicate words in Global API Treeshaking --- src/guide/migration/global-api-treeshaking.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guide/migration/global-api-treeshaking.md b/src/guide/migration/global-api-treeshaking.md index 9555ee21d6..c802436115 100644 --- a/src/guide/migration/global-api-treeshaking.md +++ b/src/guide/migration/global-api-treeshaking.md @@ -13,7 +13,7 @@ If you’ve ever had to manually manipulate DOM in Vue, you might have come acro import Vue from 'vue' Vue.nextTick(() => { - // something something DOM-related + // something DOM-related }) ``` @@ -48,7 +48,7 @@ In Vue 3, the global and internal APIs have been restructured with tree-shaking import { nextTick } from 'vue' nextTick(() => { - // something something DOM-related + // something DOM-related }) ```