home.directive("內容",function(){
templateUrl可以回傳一個函數:
home.directive('componentA', function() { return { restrict: 'E', link: function(scope, element, attrs) { // }, templateUrl: function(elem,attrs) { return attrs.templateUrl || './default.html' } } });
templateUrl可以回傳一個函數: