Here you can simple use the native JavaScript in the Angular2 component to change the class of the <body>
tag:-
let body = document.getElementsByTagName('body')[0];
body.classList.remove("className"); //remove the class
body.classList.add("className"); //add the class