12 lines
194 B
Vue
12 lines
194 B
Vue
<template>
|
|
<feedback-form />
|
|
</template>
|
|
|
|
<script>
|
|
import FeedbackForm from '../components/FeedbackForm.vue';
|
|
export default {
|
|
name: 'IndexPage',
|
|
components: { FeedbackForm },
|
|
}
|
|
</script>
|