forked from techonomics69/vuetesty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.vue
53 lines (52 loc) · 1.26 KB
/
index.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<template>
<div>
<NavOne />
<BannerOne />
<Features />
<Counter />
<ServiceOne />
<ServiceTwo />
<Video />
<Screenshots />
<Pricing />
<Testimonial />
<ClientsLogo />
<BlogHome />
<DownloadApp />
<Footer />
</div>
</template>
<script>
import NavOne from "../components/NavOne";
import BannerOne from "../components/BannerOne";
import Footer from "../components/Footer";
import Features from "../components/Features";
import Counter from "../components/Counter";
import ServiceTwo from "../components/ServiceTwo";
import ServiceOne from "../components/ServiceOne";
import Video from "../components/Video";
import Screenshots from "../components/Screenshots";
import Pricing from "../components/Pricing";
import Testimonial from "../components/Testimonial";
import ClientsLogo from "../components/ClientsLogo";
import BlogHome from "../components/BlogHome";
import DownloadApp from "../components/DownloadApp";
export default {
components: {
DownloadApp,
BlogHome,
ClientsLogo,
Testimonial,
Pricing,
Screenshots,
Video,
ServiceOne,
ServiceTwo,
Counter,
Features,
Footer,
BannerOne,
NavOne
}
}
</script>