1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-30 00:00:13 +01:00
VILLASweb/app/routes/lab-mashup.js
Markus Grigull 63a27d294c Create static layout with just one table
The whole layout and data is hardcoded as first mockup. Mirage
server mockup is added but not used yet.
2015-09-26 16:34:31 +02:00

20 lines
269 B
JavaScript

import Ember from 'ember';
export default Ember.Route.extend({
model() {
//return this.store.findAll('property');
let properties = [
{
name: "voltage",
value: 2.3
},
{
nane: "current",
value: 1.6
}
];
return properties;
}
});