var schoolInfo = {
css: null,
exports: {
onMounted() {
this.state.enabled = false;
this.update();
},
closeWindow() {
this.state.enabled = false;
this.update();
}
},
template: (template, expressionTypes, bindingTypes, getComponent) => template('
', [{
type: bindingTypes.IF,
evaluate: _scope => _scope.state.enabled,
redundantAttribute: 'expr24',
selector: '[expr24]',
template: template('', [{
redundantAttribute: 'expr25',
selector: '[expr25]',
expressions: [{
type: expressionTypes.EVENT,
name: 'onclick',
evaluate: _scope => _scope.closeWindow
}]
}, {
type: bindingTypes.TAG,
getComponent: getComponent,
evaluate: _scope => 'line-graph',
slots: [],
attributes: [],
redundantAttribute: 'expr26',
selector: '[expr26]'
}])
}]),
name: 'school-info'
};
export { schoolInfo as default };