You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.md
+39-2Lines changed: 39 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
---
2
2
home: true
3
-
//heroImage: /images/popper.svg
4
-
//heroAlt: VueJS Tour Logo
3
+
heroImage: https://vuejs.org/images/logo.png
5
4
tagline: Guide your users through your application quickly and easily.
6
5
footer: MIT Licensed | Made with ❤️ by <a href="https://github.com/GlobalHive/vuejs-tour">Global Hive</a>
7
6
footerHtml: true
7
+
title: Home
8
8
actions:
9
9
- text: Get Started →
10
10
link: /guide/getting-started
@@ -16,3 +16,40 @@ features:
16
16
- title: 🎨 Themeable
17
17
details: VueJS Tour uses sass/scss to make it easy to customize the look of your tour.
18
18
---
19
+
20
+
<VTour:steps="steps"ref="tour"highlight/>
21
+
22
+
<scriptsetup>
23
+
import { onMounted, ref } from"vue";
24
+
consttour=ref(null);
25
+
conststeps= [
26
+
{
27
+
target:".hero img",
28
+
content:"Welcome to the VueJS Tour documentation!",
29
+
},
30
+
{
31
+
target:".footer a",
32
+
content:'Made with ❤️ by <a href="https://github.com/globalhive">Global Hive</a>',
33
+
},
34
+
{
35
+
target:".navbar-item a",
36
+
content:'<br><center>Looking for the API?</center><br>',
37
+
},
38
+
{
39
+
target:".description",
40
+
content:'With full <b>HTML</b> <u>support</u> <i>for the content of your steps!</i><br><br><img src="https://i.giphy.com/media/D6WuLOKOpR2fK/giphy.webp">',
0 commit comments