UNPKG

jupyter-vuetify

Version:

Jupyter widgets based on vuetify UI components

20 lines (17 loc) 489 B
// This file contains the javascript that is run when the notebook is loaded. // It contains some requirejs configuration and the `load_ipython_extension` // which is required for any notebook extension. // Configure requirejs if (window.require) { window.require.config({ map: { "*": { "jupyter-vuetify": "nbextensions/jupyter-vuetify/index", }, }, }); } // Export the required load_ipython_extension module.exports = { load_ipython_extension() {}, };