demo20230512/Browser_Local/js/Directive/NormalTable.js
2023-05-12 10:20:28 +08:00

13 lines
270 B
JavaScript

/*
Logic Solution
WeeeCarbonFootprint
Template Directive
*/
angular.module('View.Directive')
.directive('normalTable', function (CONSTANTS) {
return {
restrict: 'E',
templateUrl: CONSTANTS.TB + 'common_search'
}
});