刘涛 a25f3a77ce sync: 同步最新呼籁官网代码到仓库
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-22 21:57:35 +08:00

15 行
393 B
Vue

<template>
<div class="contact-map">
<p class="map-address">{{ address }}</p>
</div>
</template>
<script setup>
defineProps({ address: { type: String, required: true } })
</script>
<style lang="less" scoped>
.contact-map { padding: @space-lg; background: @color-bg-gray; border-radius: @border-radius-md; text-align: center; }
.map-address { color: @color-text-secondary; }
</style>