I need to create routing like
http://localhost:89/app_dev.php/list#gold-coin
So it will open specific tab on navigation.
But my routing not working as expected.
shop_product:
    path: /list#{slug}
    methods: [GET] 
Edit:
I have three tabs tab-A, tab-B, tab-C and I need to display list of products related to tab-A on clicking url:  http://localhost:89/app_dev.php/list#tab-A. (consider tab-A as category). I need tab-A as a slug parameter and we are not preferring url like  http://localhost:89/app_dev.php/list/tab-A 
 
     
     
    