タグ付けされた質問 「angular-dart」

5
AngularDartの別のコンポーネントにCSSクラスを適用する方法は?
ポップアップを表示するシンプルなフレームワークがあるとしましょう: @Component( selector: 'popup-host', template: ''' <div class="popup-container"> <ng-template #popupRef></ng-template> </div> ''', styles: ['.popup-container { position: absolute; top: 100; left: 100; z-index: 100; }'], ) class PopupContainerComponent { final PopupController _controller; final ComponentLoader _loader; PopupContainerComponent(this._controller, this._loader); void ngOnInit() { _controller.container = this; } @ViewChild('popupRef', read: ComponentRef) ComponentRef popupRef; void render(PopupConfig …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.