2017-04-14 19:47:33 +02:00
|
|
|
const Vue = require("vue");
|
2017-04-09 21:59:57 +02:00
|
|
|
|
|
|
|
function exists(id) {
|
|
|
|
return document.getElementById(id) !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
let vueMapping = {
|
2017-04-15 20:16:07 +02:00
|
|
|
'search-system': require('./search'),
|
|
|
|
'entity-dashboard': require('./entity-search'),
|
2017-04-09 21:59:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
Object.keys(vueMapping).forEach(id => {
|
|
|
|
if (exists(id)) {
|
|
|
|
let config = vueMapping[id];
|
|
|
|
config.el = '#' + id;
|
|
|
|
new Vue(config);
|
|
|
|
}
|
|
|
|
});
|