UNPKG

opal-components

Version:

[Rionite](https://github.com/Riim/Rionite) component set.

25 lines (20 loc) 385 B
import { Component } from 'rionite'; import './index.css'; import template from './template.nelm'; @Component.Config({ elementIs: 'OpalMultirowRow', template, events: { 'btn-remove-row': { click() { this.emit('remove-row-click'); } }, 'btn-add-row': { click() { this.emit('add-row-click'); } } } }) export class OpalMultirowRow extends Component {}