11 lines
141 B
JavaScript
11 lines
141 B
JavaScript
![]() |
function option (config)
|
||
|
{
|
||
|
this.id = config.id;
|
||
|
this.config = config;
|
||
|
this.val = config.val;
|
||
|
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
export default option;
|