@angular/router#ExtraOptions TypeScript Examples
The following examples show how to use
@angular/router#ExtraOptions.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: app-routing.module.ts From ngx-admin-dotnet-starter with MIT License | 5 votes |
config: ExtraOptions = {
useHash: false,
}
Example #2
Source File: app-routing.module.ts From IntelOwl-ng with GNU Affero General Public License v3.0 | 5 votes |
config: ExtraOptions = {
useHash: false,
relativeLinkResolution: 'legacy',
}
Example #3
Source File: app-routing.ts From open-genes-frontend with Mozilla Public License 2.0 | 5 votes |
ROUTER_OPTIONS: ExtraOptions = {
anchorScrolling: 'enabled',
relativeLinkResolution: 'legacy',
}
Example #4
Source File: app-routing.module.ts From digital-bank-ui with Mozilla Public License 2.0 | 5 votes |
config: ExtraOptions = {
useHash: false,
}