このコードの短いバージョンはありますか? 私も ui-router.js を使用しています。コードは私のメニューの抜粋です。
function ($stateProvider, $routeProvider, $urlRouterProvider) {
var home = {
name: 'home',
url: '/',
templateUrl: 'partials/home.php',
};
var newarticle = {
name: 'newarticle',
url: '/newarticle',
templateUrl: 'partials/newarticle.php',
};
$stateProvider
.state(home);
$stateProvider
.state(newarticle);