일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- angular animation
- angular modal
- ApexChart
- 앵귤러 애니메이션
- 스크롤 이벤트 감지
- Ionic modal
- TAILWIND
- Angular Router
- angular button
- scroll
- 모달
- egov spring ajax 사용 예시
- ajax 사용 예시
- 호버
- route
- prisma
- 앵귤러 모달
- Oracle LISTAGG 사용 예시
- 아이오닉 스크롤 이벤트
- 검색
- modal
- angular route
- flex-1
- 옵저버블
- mysql if
- 셀렉트박스 커스텀
- Router
- 스크롤 이벤트
- formgroup
- summary
- Today
- Total
목록route config (2)
깜놀하는 해므찌로
1. app-template 2. layout-template import { ApplicationConfig, importProvidersFrom } from '@angular/core'; import { Route } from '@angular/router'; import { IonicModule } from '@ionic/angular'; import { LayoutPage } from './layout/layout.page'; import { BrowserModule } from '@angular/platform-browser'; import { provideRouter, withEnabledBlockingInitialNavigation, RouteReuseStrategy, } from '@ang..

import { Route } from '@angular/router'; import { LayoutPage } from './pages/layout/layout.page'; export const appRoutes: Route[] = [ { path: '', title: '테스트', component: LayoutPage, children: [ { path: '', title: '테스트 - 홈', data: { menu: false }, loadComponent: () => import('./pages/index/index.page').then((m) => m.IndexPage), }, { path: 'video', title: '테스트 - 영상', data: { menu: true, // true =..