first commit

This commit is contained in:
duanshuwen
2026-05-25 23:40:50 +08:00
commit 30b9100b4a
569 changed files with 75942 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<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>