salix/modules/entry/front/buy/index/index.js

11 lines
237 B
JavaScript
Raw Normal View History

2021-01-26 06:21:05 +00:00
import ngModule from '../../module';
2020-03-17 13:43:46 +00:00
import Section from 'salix/components/section';
2020-03-06 08:57:05 +00:00
2021-01-26 06:21:05 +00:00
ngModule.vnComponent('vnEntryBuyIndex', {
2020-03-06 08:57:05 +00:00
template: require('./index.html'),
2020-03-17 13:43:46 +00:00
controller: Section,
2020-03-06 08:57:05 +00:00
bindings: {
entry: '<'
}
});