Files
YGChatCS/components/CommandWrapper/index.vue
2025-07-14 16:10:10 +08:00

19 lines
307 B
Vue

<template>
<view class="command-wrapper">
<text class="command-text">{{ text }}</text>
</view>
</template>
<script setup>
defineProps({
text: {
type: String,
default: "商品详情",
},
});
</script>
<style scoped lang="scss">
@import "./styles/index.scss";
</style>