Jsming
Results
1
issues of
Jsming
源码 angular.module('example', []).config(function($stateProvider, $urlRouterProvider) { $stateProvider.state('example', { url: '/example', template: __inline('./example.html') }).state('example.dropdown', { url: '/dropdown', templateUrl: __inline('./dropdown.html') }); }); 编译后: define('example', function(require, exports, module) { 'use strict'; angular.module('example', []).config(function($stateProvider, $urlRouterProvider)...