`HistoryQueriesSwitch` was not migrated correctly to Vue3 and was not working. It was required to change the `v-model` prop default name which changed in Vue3 (`value` to `modelValue`)
We are also introducing the BREAKING CHANGE of removing the event `change` in favor of the `update:modelValue` in the `BaseSwitch` component to follow the Vue3 naming.
Source: https://v3-migration.vuejs.org/breaking-changes/v-model.html
## Motivation and context
[ ] Dependencies. If any, specify:
[ ] Open issue. If applicable, link:
Type of change
[ ] Bug fix (non-breaking change that fixes an issue)
[ ] New feature (non-breaking change that adds functionality)
[ ] Breaking change (fix or feature that causes existing functionality to not work as expected)
Pull request template
`HistoryQueriesSwitch` was not migrated correctly to Vue3 and was not working. It was required to change the `v-model` prop default name which changed in Vue3 (`value` to `modelValue`) We are also introducing the BREAKING CHANGE of removing the event `change` in favor of the `update:modelValue` in the `BaseSwitch` component to follow the Vue3 naming. Source: https://v3-migration.vuejs.org/breaking-changes/v-model.html ## Motivation and contextType of change
What is the destination branch of this PR?
Main
How has this been tested?
Tests performed according to testing guidelines:
Checklist: