私のコード:
app.directive('abcabc', function (){ alert('directive');}); // working
しかし
app.directive('abcAbc', function (){ alert('directive');}); // not working !
app.directive('abc-abc', function (){ alert('directive');}); // not working !
私は間違っていますか?または、Angular ディレクティブには特別な命名規則がありますか?