2017-08-17 22:00:37 +05:30
|
|
|
import Vue from 'vue';
|
2020-04-08 14:13:33 +05:30
|
|
|
import NotebookViewer from './notebook_viewer.vue';
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
export default () => {
|
|
|
|
const el = document.getElementById('js-notebook-viewer');
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
return new Vue({
|
2017-08-17 22:00:37 +05:30
|
|
|
el,
|
2020-04-08 14:13:33 +05:30
|
|
|
render(createElement) {
|
|
|
|
return createElement(NotebookViewer, {
|
|
|
|
props: {
|
|
|
|
endpoint: el.dataset.endpoint,
|
|
|
|
},
|
|
|
|
});
|
2018-03-17 18:26:18 +05:30
|
|
|
},
|
2017-08-17 22:00:37 +05:30
|
|
|
});
|
|
|
|
};
|