在Yeoman Angular

时间:2015-07-21 12:45:16

标签: angularjs yeoman

我刚创建了一个新的Yeoman角项目。当我开始咕噜声服务时,基本站点工作。我试图添加新的依赖项' ui.bootstrap'或者' google-maps'主模块比ng-View没有显示。

的index.html

...

<div ng-view=""></div>

...

app.js

   angular.module('clientApp', [
    'ngRoute',
     'google-maps'
  ])
  .config(function ($routeProvider) {

     $routeProvider
      .when('/', {
        templateUrl: 'views/main.html',
        controller: 'MainCtrl'
      })
      .when('/about', {
        templateUrl: 'views/about.html',
        controller: 'AboutCtrl'
      })
      .otherwise({
        redirectTo: '/'
      });
  });

0 个答案:

没有答案