From d48c40943288942bfcd1e1284c8abcaa191af305 Mon Sep 17 00:00:00 2001 From: ngxson Date: Mon, 27 Jul 2020 10:55:39 +0200 Subject: [PATCH] fix: initApp() is not called --- src/popup/popup.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/popup/popup.js b/src/popup/popup.js index dc73ab0..fa1c5d8 100644 --- a/src/popup/popup.js +++ b/src/popup/popup.js @@ -70,3 +70,5 @@ async function initApp() { render: (h) => h(App), }); } + +initApp();