mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
16 lines
302 B
JavaScript
16 lines
302 B
JavaScript
|
|
||
|
function exists(id) {
|
||
|
return document.getElementById(id) !== null;
|
||
|
}
|
||
|
|
||
|
let vueMapping = {
|
||
|
'search-system': require('./search')
|
||
|
};
|
||
|
|
||
|
Object.keys(vueMapping).forEach(id => {
|
||
|
if (exists(id)) {
|
||
|
let config = vueMapping[id];
|
||
|
config.el = '#' + id;
|
||
|
new Vue(config);
|
||
|
}
|
||
|
});
|