since Vue.prototype is removed using app.config.globalProperties to set window.__ & window.frappe
9 lines
251 B
JavaScript
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;
|