| Total Complexity | 2 |
| Complexity/F | 1 |
| Lines of Code | 14 |
| Function Count | 2 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | export default { |
||
| 2 | data: function(){ |
||
| 3 | return { |
||
| 4 | admin_user_create_form: { |
||
| 5 | show_opt_actv_mail: false, |
||
| 6 | } |
||
| 7 | } |
||
| 8 | }, |
||
| 9 | methods: { |
||
| 10 | activateChanged: function () { |
||
| 11 | this.admin_user_create_form.show_opt_actv_mail = (event.target.value == false); |
||
|
|
|||
| 12 | } |
||
| 13 | } |
||
| 14 | } |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.