File tree 7 files changed +16
-16
lines changed
7 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -133,8 +133,8 @@ The Common module is the container reference for all application specific compon
133
133
134
134
``` js
135
135
import angular from ' angular' ;
136
- import NavModule from ' ./nav' ;
137
- import FooterModule from ' ./footer' ;
136
+ import NavModule from ' ./nav/nav.module ' ;
137
+ import FooterModule from ' ./footer/footer.module ' ;
138
138
139
139
const CommonModule = angular
140
140
.module (' app.common' , [
Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ Un `Component module` es el contenedor referencia para todos los componentes reu
106
106
107
107
``` js
108
108
import angular from ' angular' ;
109
- import CalendarModule from ' ./calendar/calendar' ;
110
- import EventsModule from ' ./events/events' ;
109
+ import CalendarModule from ' ./calendar/calendar.module ' ;
110
+ import EventsModule from ' ./events/events.module ' ;
111
111
112
112
const ComponentsModule = angular
113
113
.module (' app.components' , [
@@ -588,7 +588,7 @@ Aquí hay un ejemplo utilizando una constante con una `Arrow function` y `expres
588
588
589
589
``` js
590
590
/* ----- todo/todo-autofocus.directive.js ----- */
591
- import angular from ' ../../ angular' ;
591
+ import angular from ' angular' ;
592
592
593
593
const TodoAutoFocus = ($timeout ) => ({
594
594
restrict: ' A' ,
@@ -624,7 +624,7 @@ O utilizando una clases ES2015 (toma en cuenta la llamada manual de `new TodoAut
624
624
625
625
``` js
626
626
/* ----- todo/todo-autofocus.directive.js ----- */
627
- import angular from ' ../../ angular' ;
627
+ import angular from ' angular' ;
628
628
629
629
class TodoAutoFocus {
630
630
constructor ($timeout ) {
Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ Un module component contient les références pour tous les components réutilis
106
106
107
107
``` js
108
108
import angular from ' angular' ;
109
- import CalendarModule from ' ./calendar' ;
110
- import EventsModule from ' ./events' ;
109
+ import CalendarModule from ' ./calendar/calendar.module ' ;
110
+ import EventsModule from ' ./events/events.module ' ;
111
111
112
112
const ComponentsModule = angular
113
113
.module (' app.components' , [
Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ Sebuah modul Komponen adalah suatu referensi kontainer untuk semua komponen yang
106
106
107
107
``` js
108
108
import angular from ' angular' ;
109
- import CalendarModule from ' ./calendar' ;
110
- import EventsModule from ' ./events' ;
109
+ import CalendarModule from ' ./calendar/calendar.module ' ;
110
+ import EventsModule from ' ./events/events.module ' ;
111
111
112
112
const ComponentsModule = angular
113
113
.module (' app.components' , [
Original file line number Diff line number Diff line change @@ -105,8 +105,8 @@ Um component module é a aquele que contém referência para todos os componente
105
105
106
106
``` js
107
107
import angular from ' angular' ;
108
- import CalendarModule from ' ./calendar' ;
109
- import EventsModule from ' ./events' ;
108
+ import CalendarModule from ' ./calendar/calendar.module ' ;
109
+ import EventsModule from ' ./events/events.module ' ;
110
110
111
111
const ComponentsModule = angular
112
112
.module (' app.components' , [
Original file line number Diff line number Diff line change @@ -107,8 +107,8 @@ export default AppModule;
107
107
108
108
``` js
109
109
import angular from ' angular' ;
110
- import CalendarModule from ' ./calendar' ;
111
- import EventsModule from ' ./events' ;
110
+ import CalendarModule from ' ./calendar/calendar.module ' ;
111
+ import EventsModule from ' ./events/events.module ' ;
112
112
113
113
const ComponentsModule = angular
114
114
.module (' app.components' , [
Original file line number Diff line number Diff line change @@ -112,8 +112,8 @@ export default AppModule;
112
112
113
113
``` js
114
114
import angular from ' angular' ;
115
- import CalendarModule from ' ./calendar' ;
116
- import EventsModule from ' ./events' ;
115
+ import CalendarModule from ' ./calendar/calendar.module ' ;
116
+ import EventsModule from ' ./events/events.module ' ;
117
117
118
118
const ComponentsModule = angular
119
119
.module (' app.components' , [
You can’t perform that action at this time.
0 commit comments