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

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -