Make buttonText optional

This commit is contained in:
Jan Bader 2022-03-01 20:31:22 +00:00
parent d0ade0f2f1
commit 08bda8d14f

View File

@ -3,7 +3,7 @@ import Card from '../components/Card.vue';
import { ref } from "vue";
const props = defineProps<{
buttonText: string,
buttonText?: string,
}>();
const emit = defineEmits<{