From 040418dcd90f383420bf8ef6b252c13bdf75c106 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sun, 26 Jul 2020 16:37:40 +0800 Subject: [PATCH] chore(Dialog): remove log --- src/dialog/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/dialog/index.js b/src/dialog/index.js index 4d0ded239..0166c394b 100644 --- a/src/dialog/index.js +++ b/src/dialog/index.js @@ -56,7 +56,7 @@ function Dialog(options) { nextTick(() => { instance.dialogProps.show = true; - }) + }); }); } @@ -111,7 +111,6 @@ Dialog.resetDefaultOptions = () => { Dialog.resetDefaultOptions(); Dialog.install = (app) => { - console.log('use VanDialog', VanDialog); app.use(VanDialog); app.config.globalProperties.$dialog = Dialog; };