Angular2 Vaadin-Grid with Firebase Data

I really like the Vaadin Grid and i want to implement it on my Firebase.

I’m getting the data with angularfire2:

[code]
import { AngularFire, FirebaseObjectObservable , FirebaseListObservable } from ‘angularfire2’;

constructor(private _af: AngularFire) { }

return this._af.database.list(‘main/users’);
[/code]What do i need to change to make the Vaadin Grid see the firebase data?

Hi!

Make sure you’ve defined columns that match your data, and then assign your data to ‘items’ property either as an array or a function.

You can find more details here: https://vaadin.com/docs/-/part/elements/vaadin-grid/vaadin-grid-assigning-data.html