-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Open
Labels
Description
Example 1:
dash-sample-apps/apps/dash-financial-report/utils.py
Lines 51 to 85 in 7ea90b8
def get_menu(): | |
menu = html.Div( | |
[ | |
dcc.Link( | |
"Overview", | |
href="/dash-financial-report/overview", | |
className="tab first", | |
), | |
dcc.Link( | |
"Price Performance", | |
href="/dash-financial-report/price-performance", | |
className="tab", | |
), | |
dcc.Link( | |
"Portfolio & Management", | |
href="/dash-financial-report/portfolio-management", | |
className="tab", | |
), | |
dcc.Link( | |
"Fees & Minimums", href="/dash-financial-report/fees", className="tab" | |
), | |
dcc.Link( | |
"Distributions", | |
href="/dash-financial-report/distributions", | |
className="tab", | |
), | |
dcc.Link( | |
"News & Reviews", | |
href="/dash-financial-report/news-and-reviews", | |
className="tab", | |
), | |
], | |
className="row all-tabs", | |
) | |
return menu |
Example 2:
The moment the name of the app changes, they will likely break. They should be using app.get_relative_path("/my-route")
instead.