import ngModule from '../module'; class ItemList { constructor() { this.model = {}; } search(index) { index.accept(); } } ngModule.component('vnItemList', { template: require('./list.html'), controller: ItemList });