ミラー元
https://github.com/mail-in-a-box/mailinabox.git
前回の同期 2026-03-15 17:37:22 +01:00
11 行
246 B
JavaScript
11 行
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);
|
|
});
|
|
|
|
});
|