mirror of https://github.com/status-im/consul.git
22 lines
419 B
JavaScript
22 lines
419 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { tracked } from '@glimmer/tracking';
|
|
import { action } from '@ember/object';
|
|
|
|
export default class Option extends Component {
|
|
@tracked selected;
|
|
|
|
@action
|
|
connect() {
|
|
this.args.select.addOption(this);
|
|
}
|
|
@action
|
|
disconnect() {
|
|
this.args.select.removeOption(this);
|
|
}
|
|
}
|