import {Injectable} from "@angular/core"; @Injectable() export class DocumentRefService { private document; constructor() { this.document = typeof document === "undefined" ? null : document; } getNativeDocument() { return this.document; } } Делаешь сервис-обёртку и дальше .getElementsByTagName('body')[0] .classList.add('MyClass')
Обсуждают сегодня