File tree Expand file tree Collapse file tree 5 files changed +16
-7
lines changed Expand file tree Collapse file tree 5 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,11 @@ export default [
25
25
name : "Project" ,
26
26
children : [
27
27
{ name : "About" , path : "/about" } ,
28
- { name : "Example Usage" , path : "/example-usage" } ,
29
- { name : "Playground" , path : "/playground" } ,
28
+ { name : "Demo" , path : "/demo" } ,
29
+ {
30
+ name : "Playground" ,
31
+ path : "https://stackblitz.com/edit/vitejs-vite-px7jzkdy?file=src%2Fcomponents%2FHelloWorld.vue" ,
32
+ } ,
30
33
] ,
31
34
} ,
32
35
] ;
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ const router = createRouter({
11
11
} ,
12
12
} ,
13
13
{
14
- path : "/playground " ,
15
- component : ( ) => import ( "@/views/PlaygroundView .vue" ) ,
14
+ path : "/demo " ,
15
+ component : ( ) => import ( "@/views/DemoView .vue" ) ,
16
16
meta : {
17
17
footer : true ,
18
18
} ,
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ const links = [
60
60
},
61
61
{
62
62
title: " Playground" ,
63
- url: " /playground " ,
63
+ url: " https://stackblitz.com/edit/vitejs-vite-px7jzkdy?file=src%2Fcomponents%2FHelloWorld.vue " ,
64
64
color: " text-blue-500" ,
65
65
},
66
66
{
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<section class =" pg-view" >
3
- <h2 >Simple form validation with Vue Formik</h2 >
3
+ <h2 class = " !text-xl !pb-1 " >Simple form validation with Vue Formik</h2 >
4
4
<hr class =" mb-6" />
5
5
6
6
<div class =" mb-4 border-b" >
Original file line number Diff line number Diff line change 13
13
<router-link class =" secondary-btn md" to =" /getting-started/quick-start" >
14
14
Get Started
15
15
</router-link >
16
- <router-link class =" secondary-btn md" to =" /playground" >Playground</router-link >
16
+ <a
17
+ class =" secondary-btn md"
18
+ target =" _blank"
19
+ href =" https://stackblitz.com/edit/vitejs-vite-px7jzkdy?file=src%2Fcomponents%2FHelloWorld.vue"
20
+ >
21
+ Playground
22
+ </a >
17
23
</div >
18
24
</section >
19
25
You can’t perform that action at this time.
0 commit comments