2024-06-14 01:06:46 +08:00

17 lines
244 B
Vue

<script lang="ts" setup>
const props = defineProps({
text: {
type: String,
default: 'text',
},
});
const text = `TEXT: ${props.text}`;
</script>
<template>
<view>{{ text }}</view>
</template>
<style lang="scss" scoped></style>