Added Reaction component to use and fixed some warning from vue
This commit is contained in:
@@ -76,12 +76,12 @@ import {loadStripe} from '@stripe/stripe-js';
|
||||
import {computed, onMounted, ref} from 'vue';
|
||||
|
||||
const props = defineProps({
|
||||
colorBorder: {type: String, required: true},
|
||||
colorAccent: {type: String, required: true},
|
||||
colorBorder: {required: true},
|
||||
colorAccent: {required: true},
|
||||
creatorId: {type: String, required: true},
|
||||
creatorName: {type: String, required: true},
|
||||
creatorLogo: {type: String, required: true},
|
||||
iconColorClass: {type: String, default: 'text-black'}
|
||||
creatorLogo: {required: true},
|
||||
iconColorClass: {default: 'text-black'}
|
||||
});
|
||||
|
||||
const colorBorder = computed(() => props.colorBorder)
|
||||
|
||||
Reference in New Issue
Block a user