Merge pull request #30 from angular/dart-quickstart-19
Update Dart quick start to angular2 alpha 19
This commit is contained in:
commit
dd05f24964
|
@ -26,14 +26,16 @@ p.
|
|||
> vim pubspec.yaml # Use your favorite editor!
|
||||
|
||||
p.
|
||||
In <code>pubspec.yaml</code>, add the angular2 and browser packages as dependencies:
|
||||
In <code>pubspec.yaml</code>, add the angular2 and browser packages as dependencies.
|
||||
Angular 2 is changing rapidly, so specify an exact version:
|
||||
<b>2.0.0-alpha.19</b>.
|
||||
|
||||
pre.prettyprint.linenums.lang-basic
|
||||
code.
|
||||
name: hello_world
|
||||
version: 0.0.1
|
||||
dependencies:
|
||||
angular2: ">=2.0.0-alpha.6 <3.0.0"
|
||||
angular2: 2.0.0-alpha.19
|
||||
browser: any
|
||||
p.
|
||||
In the same directory, run <code>pub get</code>
|
||||
|
@ -44,21 +46,13 @@ p.
|
|||
code.
|
||||
> pub get
|
||||
Resolving dependencies... (2.7s)
|
||||
+ analyzer 0.24.1 (0.25.0-dev.3 available)
|
||||
... more messages ...
|
||||
Changed 21 dependencies!
|
||||
Precompiling dependencies...
|
||||
Loading source assets...
|
||||
Precompiled dart_style.
|
||||
# ... messages ...
|
||||
+ angular2 2.0.0-alpha.19
|
||||
# ... more messages ...
|
||||
|
||||
// PENDING: Create template? Link to pub/pubspec docs?
|
||||
// Is browser really needed?
|
||||
|
||||
.alert.is-helpful.
|
||||
Depending on your version of Dart and the latest version of angular2,
|
||||
your messages are probably going to be different from what's shown above.
|
||||
That's fine.
|
||||
|
||||
|
||||
// STEP 2 - Import Angular ##########################
|
||||
.l-main-section
|
||||
|
@ -102,8 +96,8 @@ p.
|
|||
@Component(
|
||||
selector: 'my-app'
|
||||
)
|
||||
@Template(
|
||||
inline: '<h1>Hello {{ name }}</h1>'
|
||||
@View(
|
||||
template: '<h1>Hello {{ name }}</h1>'
|
||||
)
|
||||
class AppComponent {
|
||||
String name = 'Alice';
|
||||
|
|
Loading…
Reference in New Issue