29 lines
400 B
Vue
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> |