seitime-frappe/frappe/public/js/libs.bundle.js
Shariq Ansari 5373780741 fix: set vue global properties
since Vue.prototype is removed using app.config.globalProperties to set window.__ & window.frappe
2022-09-29 19:14:06 +05:30

9 lines
251 B
JavaScript

import "./jquery-bootstrap";
import "./lib/moment";
import Sortable from "sortablejs";
window.SetVueGlobals = (app) => {
app.config.globalProperties.__ = window.__;
app.config.globalProperties.frappe = window.frappe;
};
window.Sortable = Sortable;