<script setup lang="ts">
// THIS throw vue-tsc error Vue: Expression produces a union type that is too complex to represent.
withDefaults(defineProps<{
to: NavigateTo,
routeName: RouteName
}>(), {
to: undefined,
routeName: undefined
})
</script>
<script setup lang="ts">
// THIS throw vue-tsc error Vue: Expression produces a union type that is too complex to represent.
withDefaults(defineProps<{
to: NavigateTo,
routeName: RouteName
}>(), {
to: undefined,
routeName: undefined
})
</script>