This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 不要使用已有的html作为指令,如menu,否则angular会陷入死循环
app.directive('menus', function() {
return {
restrict: 'EAC',
templateUrl: '/views/menus.html',
replace: true
}
});