Pass values to route
问题 I have a list of items. When the user clicks on an item, the user will be taken to item details page. I want to pass an object containing item details(like item's image URL) to the route. However, I don't want to expose it in the routes url. If there were a way to do something like <a route-href="route: details; settings.bind({url: item.url})">${item.name}</a> that would be gold. I have seen properties can be passed to a route if defined in the route configuration. However, I don't know how