1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-05 00:27:25 +00:00
mailinabox/management/ui-common/page-layout.js
2021-04-10 09:29:29 -04:00

11 lines
246 B
JavaScript

export default Vue.component('page-layout', function(resolve, reject) {
axios.get('ui-common/page-layout.html').then((response) => { resolve({
template: response.data,
})}).catch((e) => {
reject(e);
});
});