From 89af6d82e74c490e1f360d5a96dddb28873a9215 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Thu, 29 Sep 2022 16:59:45 +0530 Subject: [PATCH] refactor: updated vue syntax --- frappe/public/js/libs.bundle.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/libs.bundle.js b/frappe/public/js/libs.bundle.js index 3d3738fd88..4d95d8ae5a 100644 --- a/frappe/public/js/libs.bundle.js +++ b/frappe/public/js/libs.bundle.js @@ -1,7 +1,7 @@ import "./jquery-bootstrap"; -import Vue from "vue/dist/vue.esm.js"; +import { createApp } from "vue"; import "./lib/moment"; import Sortable from "sortablejs"; -window.Vue = Vue; +window.Vue = createApp; window.Sortable = Sortable;