Skip to content

Commit

Permalink
Replace @AppLayout with @AppTitle (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyyan authored Dec 4, 2024
1 parent 14f72b8 commit e72c3a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/routing/navigational-frame-titles.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ In this example:
This method is useful for routes that have a static title and don't require frequent updates based on the route’s context.

:::tip `@AppTitle` and `@FrameTitle`
If the app title is set, the frame title will incorporate it. For example, if the app defines the title as `@AppTitle("webforJ")` and the frame title is set as `@FrameTitle("Dashboard")`, the final page title will be `Dashboard - webforJ`. You can customize the format of the final title in the `@AppLayout` annotation by using the `format` attribute if needed.
If the app title is set, the frame title will incorporate it. For example, if the app defines the title as `@AppTitle("webforJ")` and the frame title is set as `@FrameTitle("Dashboard")`, the final page title will be `Dashboard - webforJ`. You can customize the format of the final title in the `@AppTitle` annotation by using the `format` attribute if needed.
:::

## Dynamic frame titles
Expand Down Expand Up @@ -70,4 +70,4 @@ In this example:

:::tip Combining annotations and dynamic titles
You can combine both static and dynamic methods. If a route component has both a `@FrameTitle` annotation and implements the `HasFrameTitle` interface, the dynamically provided title from `getFrameTitle()` will take precedence over the static value from the annotation.
:::
:::

0 comments on commit e72c3a0

Please sign in to comment.