I am using angular2 to create a web application that uses HashLocationStrategy. everything is fine until I try to add jquery materializecss based components to my templates.
for example, here is an example of a navigation bar change button
<a href="#" data-activates="nav-mobile" class="button-collapse"> <i class="material-icons">menu</i> </a>
angular will consider this as a route path and will move around the main page
Are there any work rounds for this problem?
aloba source share