Juan Felipe Zapata Moreno c6c2f78d16 Initial Commit
2025-08-12 09:36:02 -06:00

13 lines
186 B
Vue

<script setup>
defineProps({
text: String,
type: {
default: 'ADD',
type: String
}
});
</script>
<template>
<li><b>{{ type }}:</b> {{ text }}</li>
</template>