forked from techonomics69/vuetesty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.vue
58 lines (57 loc) · 1.33 KB
/
index2.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
54
55
56
57
58
<template>
<div>
<NavTwo />
<BannerTwo />
<Features />
<Counter />
<ServiceOne />
<ServiceTwo />
<Video />
<Screenshots />
<Pricing />
<Testimonial />
<ClientsLogo />
<BlogHome />
<DownloadApp />
<Footer />
</div>
</template>
<script>
import NavTwo from "../components/NavTwo";
import BannerTwo from "../components/BannerTwo";
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,
BannerTwo,
NavTwo
},
head(){
return {
title: "Jironis | Home 2"
}
}
}
</script>