I added a checkout step, by extending a template using js
return Component.extend({
defaults: {
template: 'vendor_module/myfile.html'
},
And its working fine.
But I need to add some dynamic content to the table, ie. fetching data from my custom table and display each row of a column.
How can I achieve that ?