mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-05 00:27:25 +00:00
11 lines
246 B
JavaScript
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);
|
|
});
|
|
|
|
});
|