From bdd4bd28e1fcf88c982b5495fd535ae201f750ac Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Tue, 4 May 2021 12:50:20 +0530 Subject: [PATCH] chore: syntax sugar Signed-off-by: Ameya Shenoy --- frontend/src/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/main.ts b/frontend/src/main.ts index 6c64be5..a47738a 100644 --- a/frontend/src/main.ts +++ b/frontend/src/main.ts @@ -10,7 +10,8 @@ Vue.config.productionTip = false; Vue.use(ElementUI); new Vue({ + el: "#app", router, store, render: (h) => h(App), -}).$mount("#app"); +});