Juan Felipe Zapata Moreno 9c6eeb5fb3 Commit Inicial
2025-08-05 09:52:38 -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>