2019-05-07 10:47:09 -04:00
|
|
|
import Vue from 'vue';
|
2019-06-04 13:55:52 -04:00
|
|
|
import store from './store';
|
2019-05-07 10:47:09 -04:00
|
|
|
import ExternalDashboardForm from './components/external_dashboard.vue';
|
|
|
|
|
|
|
|
export default () => {
|
|
|
|
const el = document.querySelector('.js-operation-settings');
|
|
|
|
|
|
|
|
return new Vue({
|
|
|
|
el,
|
2019-06-04 13:55:52 -04:00
|
|
|
store: store(el.dataset),
|
2019-05-07 10:47:09 -04:00
|
|
|
render(createElement) {
|
2019-06-04 13:55:52 -04:00
|
|
|
return createElement(ExternalDashboardForm);
|
2019-05-07 10:47:09 -04:00
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|