Slide 9
Slide 9 text
Copyright © 2020 Classi Corp. All Rights Reserved.
最終的な解決案
8
Angular Elements
AngularJS
① Load Script
② Load Script
③ bootstrap
④ bootstrap
時間
Promise.thenで
イベントを起動する
window.addEventListener('DOMContentLoaded', function () {
// initializeElementはAngular Element上で定義済み
window['initializeElement']().then(function () {
angular.bootstrap(document, ['classi']);
});
});