22 lines
496 B
Vue
22 lines
496 B
Vue
<template>
|
|
<view class="response-intro-wrapper">
|
|
<text class="response-intro-text">{{ introText }}</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { defineProps } from "vue";
|
|
|
|
defineProps({
|
|
introText: {
|
|
type: String,
|
|
default:
|
|
"酒店介绍酒店介绍酒店介绍酒店介绍酒店介绍酒店介绍酒店介绍酒店介绍酒店介绍酒店介绍酒店介绍",
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "./styles/index.scss";
|
|
</style>
|