const Component = use('util.Component'); export default def(class ActionCard extends Component { static ID = 'ui.component.ActionCard'; static RENDER_MODE = Component.NO_SHADOW; static PROPERTIES = { title: { value: 'Title' }, info: {}, button_text: {}, button_style: {}, on_click: {}, style: {}, } create_template ({ template }) { $(template).html(/*html*/`
${ this.get('title') } ${ this.get('info') }
`); } on_ready ({ listen }) { $(this.dom_).find('button').on('click', this.get('on_click') || (() => {})); } });