Angular2 RC4 动画触发器绑定错误

Angular2 RC4 Animation Trigger Binding Error

我在模板中绑定动画触发器名称时出现错误。 [@triggerName] 似乎不起作用。我错过了什么?

组件

import {Component, ViewChild, ViewChildren, Input, ElementRef, Renderer} from '@angular/core';
import {trigger, state, style, transition, animate} from '@angular/core';
import 'rxjs/add/operator/map';

@Component({
    selector: 'Header',
    templateUrl: '/components/header/header.html',
    directives: [],

providers: [],
    host: {'(document:click)': 'closeLoginModal($event)'},
    animations: [
        trigger('showLoginTrigger', [
            state('true', style({opacity: '1',})),
            state('false', style({opacity: '0',})),
            transition('0 => 1', animate('400ms ease-in')),
            transition('1 => 0', animate('400ms ease-out'))
        ])
    ]
})
export class Header {
    static get parameters() {
        return [[ElementRef]];
    }
    constructor(ElementRef) {
        this.el = ElementRef.nativeElement;
        this.showLogin = true;
        this.showMenu = false;
        this.test = true;
    }
    closeLoginModal(e) {
        if (this.el.contains(e.target)) return;
        this.showLogin = false;
    }
}

模板玉

button.no-border((click)='test=!test') LOGIN
    .login-modal(*ngIf='showLogin', [@showLoginTrigger]='test')
        h2
            | Publisher
            br
            | Login

我得到的错误是:

Can't bind to '@showLoginTrigger' since it isn't a known native property

语法有问题 [@showLoginTrigger]='test'


RC4 : 应该是 @showLoginTrigger='test'


RC5及更高版本:应该是[@showLoginTrigger]='test'