mirror of https://github.com/hashicorp/consul
12 lines
300 B
JavaScript
12 lines
300 B
JavaScript
import Component from '@ember/component';
|
|||
import { computed } from '@ember/object';
|
|||
|
|||
export default Component.extend({
|
|||
classNames: ['tab-section'],
|
|||
'data-test-radiobutton': computed('name,id', function() {
|
|||
return `${this.name}_${this.id}`;
|
|||
}),
|
|||
name: 'tab',
|
|||
onchange: function() {},
|
|||
});
|