How to use Angular2 as a non-SPA?
I think you could bootstrap whatever component you need on that page
import {bootstrap} from '@angular/platform-browser-dynamic';
import {ContactComponent} from './contact.component';
bootstrap(ContactComponent);