20 lines
336 B
Vue
20 lines
336 B
Vue
<template>
|
|
<div class="service-appointment">
|
|
<h2>服务预约</h2>
|
|
<p>在这里您可以预约服务。</p>
|
|
<!-- 这里可以添加更多的预约表单或功能 -->
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ServiceAppointment'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.service-appointment {
|
|
padding: 20px;
|
|
}
|
|
</style>
|