* boilerplate, gulpfile, quickstart * move ts files up to cookbooks * move rest of ts files * fix tsconfig, default build task, json file * fix js examples * fix webpack example * remove a2docs.css references * fix aot examples * fix webpack run task * fix cb-i18n * fix upgrade examples * fix unit tests * fix comment in deployment index * removed unused typings.json * fix plunkers * fix js example paths * fix ts quickstart/setup prose * add src folder note to setup * broadly replace app/ -> src/app/ * broadly replace main.ts * broadly replaced index.html * broadly replace tsconfig * replace systemjs * fix filetrees * Minor prose fixes to aot, i18n cookbooks * remove char harp was complaining about * update new reactive forms example * fix quickstart jade error * fix mistakes uncovered by CI * fix bad filename errors * edit style guide 04-06 rule to use src * add changelog * Incorporate Jesus's feedback * fix snippet headers in toh1/2 * chore: tweak changelog and setup text
38 lines
883 B
TypeScript
38 lines
883 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
///////// Using Absolute Paths ///////
|
|
|
|
// #docregion absolute-config
|
|
@Component({
|
|
selector: 'absolute-path',
|
|
templateUrl: 'app/some.component.html',
|
|
styleUrls: ['app/some.component.css']
|
|
})
|
|
// #enddocregion absolute-config
|
|
export class SomeAbsoluteComponent {
|
|
class = 'absolute';
|
|
type = 'Absolute template & style URLs';
|
|
path = 'app/path.component.html';
|
|
}
|
|
|
|
///////// Using Relative Paths ///////
|
|
|
|
// #docregion relative-config
|
|
@Component({
|
|
// #docregion module-id
|
|
moduleId: module.id,
|
|
// #enddocregion module-id
|
|
selector: 'relative-path',
|
|
templateUrl: './some.component.html',
|
|
styleUrls: ['./some.component.css']
|
|
})
|
|
// #enddocregion relative-config
|
|
|
|
export class SomeRelativeComponent {
|
|
class = 'relative';
|
|
type = 'Component-relative template & style URLs';
|
|
path = 'path.component.html';
|
|
|
|
}
|