angularjs - Show different html files with md-tab -
i'm new angular material , question how can show different html file each md-tab. example, have 3 tabs: first catalog.html, second manage.html , third orders.html. thanks!
edit 1: did this:
<md-tabs > <md-tab label="product catalog"> <div ng-include src="#"></div> </md-tab> <md-tab label="workers management"> <div ng-include src="employeespage.html"></div> </md-tab> </md-tabs>
inside index.html, nothing shown...
<md-tab label="catalog"> <div ng-include src="'catalog.html'"></div> </md-tab>
Comments
Post a Comment