initial
This commit is contained in:
19
src/views/CheckSurvey.vue
Normal file
19
src/views/CheckSurvey.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
<MainCheckVue/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MainCheckVue from '@/components/check/MainCheck.vue'
|
||||
export default {
|
||||
components:{
|
||||
MainCheckVue
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
16
src/views/HomePage.vue
Normal file
16
src/views/HomePage.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<template>
|
||||
<div><MainVote /></div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MainVote from "@/components/MainVote.vue";
|
||||
|
||||
export default {
|
||||
name: "HomePage",
|
||||
components: {
|
||||
MainVote,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
19
src/views/QuestionList.vue
Normal file
19
src/views/QuestionList.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<div>
|
||||
<QuestionListVue/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import QuestionListVue from '@/components/check/QuestionList.vue'
|
||||
|
||||
export default {
|
||||
components:{
|
||||
QuestionListVue
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
12
src/views/RegisterForm.vue
Normal file
12
src/views/RegisterForm.vue
Normal file
@@ -0,0 +1,12 @@
|
||||
<template lang="">
|
||||
<div>
|
||||
<FormMain />
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import FormMain from "../components/form/FormMain.vue";
|
||||
export default {
|
||||
components: { FormMain },
|
||||
};
|
||||
</script>
|
||||
<style lang=""></style>
|
||||
14
src/views/SearchUser.vue
Normal file
14
src/views/SearchUser.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<div>
|
||||
<FormMain />
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import FormMain from "../components/search/SearchMain.vue";
|
||||
export default {
|
||||
components: {
|
||||
FormMain,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style></style>
|
||||
Reference in New Issue
Block a user