19 lines
307 B
Vue
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>
|