Спасибо за помощь, возник вопрос
Нужно нарисовать таблицу после того, как пользователь введет размер таблицы
Решил изменить шаблон game-line.hbs состоит
{{yield}}
<strong>Enter number cells=</strong><input type="text" id='get_cells' size='5' value="9" id='get_cells'>
<br/>
<button {{action "click_button"}}>CLick and get result</button>
<br/>
<br/>
<table border="1" class='square'>
{{#each tableRows as |singleRow|}}
<tr {{action 'clickHandler' singleRow }} >
{{#each tableCols as |singleCol|}}
<td class='cell' {{action 'clickHandler' singleCol }} id='{{singleRow}}{{singleCol}}' >
</td>
{{/each}}
</tr>
{{/each}}
</table>
game-line.js состоит
import Ember from 'ember';
export default Ember.Component.extend({
//tableRows:[0,1,2, 3, 4,5,6,7,8],
//tableCols:[0,1,2, 3, 4,5,6,7,8],
tableCols:[],
tableRows:[],
actions:{
click_button()
{
this.cell=parseInt(get_cells.value);
for (let i = 0; i < this.cell; i++)
{
this.tableRows.push(i);
this.tableCols.push(i);
}
}
},
)}