ProjetRIOT/javascript/main-controller.js

41 lines
1.3 KiB
JavaScript
Raw Normal View History

2023-03-28 13:42:53 +02:00
var mainController = {
css: null,
exports: {},
2023-03-28 16:17:29 +02:00
template: (template, expressionTypes, bindingTypes, getComponent) => template('<div class="columns"><div class="column is-one-third"><div class="box p-2 m-2"><img src="../resources/logo-parcoursup.svg"/></div><search expr41="expr41"></search></div><div class="column"><fili-info expr42="expr42"></fili-info><school expr43="expr43"></school></div></div><school-info expr44="expr44"></school-info>', [{
2023-03-28 13:42:53 +02:00
type: bindingTypes.TAG,
getComponent: getComponent,
evaluate: _scope => 'search',
slots: [],
attributes: [],
2023-03-28 16:17:29 +02:00
redundantAttribute: 'expr41',
selector: '[expr41]'
2023-03-28 13:42:53 +02:00
}, {
type: bindingTypes.TAG,
getComponent: getComponent,
evaluate: _scope => 'fili-info',
slots: [],
attributes: [],
2023-03-28 16:17:29 +02:00
redundantAttribute: 'expr42',
selector: '[expr42]'
2023-03-28 13:42:53 +02:00
}, {
type: bindingTypes.TAG,
getComponent: getComponent,
evaluate: _scope => 'school',
slots: [],
attributes: [],
2023-03-28 16:17:29 +02:00
redundantAttribute: 'expr43',
selector: '[expr43]'
2023-03-28 13:42:53 +02:00
}, {
type: bindingTypes.TAG,
getComponent: getComponent,
evaluate: _scope => 'school-info',
slots: [],
attributes: [],
2023-03-28 16:17:29 +02:00
redundantAttribute: 'expr44',
selector: '[expr44]'
2023-03-28 13:42:53 +02:00
}]),
name: 'main-controller'
};
export { mainController as default };