2019-03-21 12:46:14 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-17 14:24:55 +00:00
|
|
|
import Section from 'salix/components/section';
|
2019-03-21 12:46:14 +00:00
|
|
|
|
2020-03-17 14:24:55 +00:00
|
|
|
export default class Controller extends Section {
|
2020-04-28 12:26:02 +00:00
|
|
|
preview(route) {
|
2019-03-21 12:46:14 +00:00
|
|
|
this.routeSelected = route;
|
2019-03-22 10:10:23 +00:00
|
|
|
this.$.summary.show();
|
2019-03-21 12:46:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.component('vnRouteIndex', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
|
|
|
});
|