13 lines
186 B
Vue
13 lines
186 B
Vue
<script setup>
|
|
defineProps({
|
|
text: String,
|
|
type: {
|
|
default: 'ADD',
|
|
type: String
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<li><b>{{ type }}:</b> {{ text }}</li>
|
|
</template> |