gerson
2024-06-30 839461b04197f781ff8627d75824dacbbb76230f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
    <p>
        {{ data }}
    </p>
</template>
 
<script setup lang="ts">
const props = defineProps({
    data: {
        type: String,
    },
});
 
</script>
<style scoped lang="scss"></style>