@zuopngfei 61eeaf35b8 wewe
2025-06-16 19:01:34 +08:00

29 lines
400 B
Vue

<template>
<div class="contact-us">
<Form />
</div>
</template>
<script>
import Form from '@/components/Form.vue';
export default {
data() {
return {
};
},
computed: {},
watch: {},
methods: {},
mounted() {
},
components: { Form }
};
</script>
<style lang="less" scoped>
.contact-us{
height: 100%;
background: #fff;
}
</style>