Router warning fixes
parent
9b95710cf6
commit
cdee9a5ac7
|
@ -31,10 +31,10 @@
|
|||
<ul class="list-none p-0 m-0">
|
||||
<li class="font-bold mt-5 lg:mt-0 mb-5">Theming</li>
|
||||
<li class="mb-4">
|
||||
<PrimeVueNuxtLink to="/theming" class="text-secondary font-medium hover:text-primary border-round transition-all transition-duration-300">Styled Mode</PrimeVueNuxtLink>
|
||||
<PrimeVueNuxtLink to="/theming/styled" class="text-secondary font-medium hover:text-primary border-round transition-all transition-duration-300">Styled Mode</PrimeVueNuxtLink>
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<PrimeVueNuxtLink to="/unstyled" class="text-secondary font-medium hover:text-primary border-round transition-all transition-duration-300">Unstyled Mode</PrimeVueNuxtLink>
|
||||
<PrimeVueNuxtLink to="/theming/unstyled" class="text-secondary font-medium hover:text-primary border-round transition-all transition-duration-300">Unstyled Mode</PrimeVueNuxtLink>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -41,7 +41,7 @@ export default {
|
|||
{
|
||||
label: 'Router Link',
|
||||
icon: 'pi pi-palette',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
},
|
||||
{
|
||||
label: 'Programmatic',
|
||||
|
@ -119,7 +119,7 @@ export default {
|
|||
{
|
||||
label: 'Router Link',
|
||||
icon: 'pi pi-palette',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
},
|
||||
{
|
||||
label: 'Programmatic',
|
||||
|
@ -187,7 +187,7 @@ const items = ref([
|
|||
{
|
||||
label: 'Router Link',
|
||||
icon: 'pi pi-palette',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
},
|
||||
{
|
||||
label: 'Programmatic',
|
||||
|
|
|
@ -60,7 +60,7 @@ export default {
|
|||
label: 'Router',
|
||||
items: [
|
||||
{ label: 'Theming', route: '/theming' },
|
||||
{ label: 'Unstyled', route: '/unstyled' }
|
||||
{ label: 'Unstyled', route: '/theming/unstyled' }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -136,7 +136,7 @@ const items = ref([
|
|||
label: 'Router',
|
||||
items: [
|
||||
{ label: 'Theming', route: '/theming' },
|
||||
{ label: 'Unstyled', route: '/unstyled' }
|
||||
{ label: 'Unstyled', route: '/theming/unstyled' }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
|
|
@ -32,7 +32,7 @@ export default {
|
|||
{
|
||||
label: 'Router Link',
|
||||
icon: 'pi pi-palette',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
},
|
||||
{
|
||||
label: 'Programmatic',
|
||||
|
@ -94,7 +94,7 @@ export default {
|
|||
{
|
||||
label: 'Router Link',
|
||||
icon: 'pi pi-palette',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
},
|
||||
{
|
||||
label: 'Programmatic',
|
||||
|
@ -144,7 +144,7 @@ const items = ref([
|
|||
{
|
||||
label: 'Router Link',
|
||||
icon: 'pi pi-palette',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
},
|
||||
{
|
||||
label: 'Programmatic',
|
||||
|
|
|
@ -37,7 +37,7 @@ export default {
|
|||
},
|
||||
{
|
||||
label: 'Unstyled',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -117,7 +117,7 @@ export default {
|
|||
},
|
||||
{
|
||||
label: 'Unstyled',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -186,7 +186,7 @@ const items = ref([
|
|||
},
|
||||
{
|
||||
label: 'Unstyled',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -39,7 +39,7 @@ export default {
|
|||
{
|
||||
label: 'Unstyled',
|
||||
icon: 'pi pi-heart',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -123,7 +123,7 @@ export default {
|
|||
{
|
||||
label: 'Unstyled',
|
||||
icon: 'pi pi-heart',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -196,7 +196,7 @@ const items = ref([
|
|||
{
|
||||
label: 'Unstyled',
|
||||
icon: 'pi pi-heart',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -31,7 +31,7 @@ export default {
|
|||
label: 'Programmatic',
|
||||
icon: 'pi pi-palette',
|
||||
command: () => {
|
||||
this.$router.push('/unstyled');
|
||||
this.$router.push('/theming/unstyled');
|
||||
}
|
||||
},
|
||||
{ label: 'External', icon: 'pi pi-link', url: 'https://vuejs.org/' }
|
||||
|
@ -83,7 +83,7 @@ export default {
|
|||
label: 'Programmatic',
|
||||
icon: 'pi pi-palette',
|
||||
command: () => {
|
||||
this.$router.push('/unstyled');
|
||||
this.$router.push('/theming/unstyled');
|
||||
}
|
||||
},
|
||||
{ label: 'External', icon: 'pi pi-link', url: 'https://vuejs.org/' }
|
||||
|
@ -122,7 +122,7 @@ const items = ref([
|
|||
label: 'Programmatic',
|
||||
icon: 'pi pi-palette',
|
||||
command: () => {
|
||||
this.$router.push('/unstyled');
|
||||
this.$router.push('/theming/unstyled');
|
||||
}
|
||||
},
|
||||
{ label: 'External', icon: 'pi pi-link', url: 'https://vuejs.org/' }
|
||||
|
|
|
@ -37,7 +37,7 @@ export default {
|
|||
},
|
||||
{
|
||||
label: 'Unstyled',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -117,7 +117,7 @@ export default {
|
|||
},
|
||||
{
|
||||
label: 'Unstyled',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -186,7 +186,7 @@ const items = ref([
|
|||
},
|
||||
{
|
||||
label: 'Unstyled',
|
||||
route: '/unstyled'
|
||||
route: '/theming/unstyled'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue