Skip to content

Commit

Permalink
Merge pull request #271 from DecentralCardGame/vorab_merge
Browse files Browse the repository at this point in the history
rewind dropdown fix
  • Loading branch information
lxgr-linux authored Mar 7, 2024
2 parents 45b28a6 + 762d6f1 commit 9f7b302
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/components/elements/Dropdown/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ import {
const model = defineModel<T>();
const isOpen = ref(false);
const emit = defineEmits(['change']);
const props = withDefaults(
defineProps<{
Expand Down Expand Up @@ -72,7 +71,5 @@ const toggleDropdown = () => {
const selectOption = (option: T) => {
model.value = option;
emit('change', option);
};
</script>

0 comments on commit 9f7b302

Please sign in to comment.