chore(package): Update to rc4, beta router & universal 104.5

104.5 includes some bug fixes.
Router beta update required pathMatch on home.

Tested w/ JS on/off everything passes & works.
This commit is contained in:
Mark Pieszak
2016-07-21 11:41:43 -04:00
committed by SteveSandersonMS
parent 64a8ef1112
commit 96228711f2
2 changed files with 10 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ import { FetchData } from './components/fetch-data/fetch-data';
import { Counter } from './components/counter/counter';
export const routes: RouterConfig = [
{ path: '', redirectTo: 'home' },
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', component: Home },
{ path: 'counter', component: Counter },
{ path: 'fetch-data', component: FetchData },