Arpit Agarwal | 4397874 | 2016-08-09 15:38:25 -0700 | [diff] [blame] | 1 | 'use strict'; |
2 | |||||
3 | angular.module('ngXosLib') | ||||
4 | .component('tableTest', { | ||||
5 | restrict: 'E', | ||||
6 | bindings: {}, | ||||
7 | bindToController: true, | ||||
8 | controllerAs: 'vm', | ||||
9 | templateUrl: 'templates/table.dev.html', | ||||
10 | controller: function () { | ||||
11 | this.config = { | ||||
12 | columns: [ | ||||
13 | { | ||||
14 | label: '#', | ||||
15 | prop: 'id' | ||||
16 | }, | ||||
17 | { | ||||
18 | label: 'Name:', | ||||
19 | prop: 'name' | ||||
20 | } | ||||
21 | ] | ||||
22 | }; | ||||
23 | this.data = [{id: 1, name: 'Jhon'}] | ||||
24 | } | ||||
25 | }) |