Doc update

pull/1196/head^2
Cagatay Civici 2021-05-14 19:06:31 +03:00
parent 22fc6b212a
commit 7bb54c6800
1 changed files with 7 additions and 2 deletions

View File

@ -54,7 +54,7 @@ const items: [
<td>to</td> <td>to</td>
<td>string</td> <td>string</td>
<td>null</td> <td>null</td>
<td>Path of the route.</td> <td>Route configuration such as path, name and parameters.</td>
</tr> </tr>
<tr> <tr>
<td>command</td> <td>command</td>
@ -135,10 +135,15 @@ const items = [
<pre v-code.script><code> <pre v-code.script><code>
const items = [ const items = [
{ {
label: 'Internal', label: 'Route Path',
icon: 'pi pi-plus', icon: 'pi pi-plus',
to: '/fileupload' to: '/fileupload'
}, },
{
label: 'Named Route',
icon: 'pi pi-plus',
to: {name: 'fileupload'}
},
{ {
label: 'External', label: 'External',
icon: 'pi pi-check', icon: 'pi pi-check',