diff --git a/components/settings/Minting.vue b/components/settings/Minting.vue index d171b0da4e..2b6cb91a41 100644 --- a/components/settings/Minting.vue +++ b/components/settings/Minting.vue @@ -4,14 +4,14 @@ {{ $t('Minting Settings') }}
- +
diff --git a/components/shared/Support.vue b/components/shared/Support.vue index 2e2712886d..b5df5f9980 100644 --- a/components/shared/Support.vue +++ b/components/shared/Support.vue @@ -2,7 +2,9 @@
- {{ value ? `${$t(activeMessage)}${priceString}` : $t(passiveMessage) }} + {{ + modelValue ? `${$t(activeMessage)}${priceString}` : $t(passiveMessage) + }}
@@ -15,12 +17,12 @@ import { NeoSwitch } from '@kodadot1/brick' const props = withDefaults( defineProps<{ - value: boolean + modelValue: boolean showPrice?: boolean price?: number - activeMessage: string - passiveMessage: string - type: string + activeMessage?: string + passiveMessage?: string + type?: string }>(), { showPrice: true, @@ -30,10 +32,7 @@ const props = withDefaults( type: '', }, ) -const emit = defineEmits(['input']) + +const model = useVModel(props, 'modelValue') const priceString = ref(props.showPrice ? ` ($ ${round(props.price)})` : '') -const model = computed({ - get: () => props.value, - set: (value: boolean) => emit('input', value), -})