Formatting.
This commit is contained in:
parent
9fdb7b3dbb
commit
68ebf708fe
|
@ -164,10 +164,13 @@
|
||||||
h4 Load the component module
|
h4 Load the component module
|
||||||
.c6
|
.c6
|
||||||
p
|
p
|
||||||
| The last step is to load the module for the <code>app</code> component. The <code>es6-shim</code> file comes packaged with the <code>System</code> library, which is the current polyfill for ES6 module loading. <code>System</code> will allow you to load modules in browsers that do not support ES6 module loading.
|
| The last step is to load the module for the <code>app</code> component. The <code>es6-shim</code> file comes packaged with the <code>System</code> library. <code>System</code> will allow you to load modules in browsers that do not support ES6 module loading.
|
||||||
|
|
||||||
p
|
p
|
||||||
|
|
| To load the needed modules, <code>System</code> needs to know where to dynamically load the files. The <code>paths</code> property in <code>System</code> allows you to specify where the location of the files.
|
||||||
|
|
||||||
|
p
|
||||||
|
| Using <code>System.paths</code> specify paths for Angular, runtime assertions, and the <code>app</code> component created above.
|
||||||
|
|
||||||
code
|
code
|
||||||
pre
|
pre
|
||||||
|
|
Loading…
Reference in New Issue