forked from livewire/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navigation.php
52 lines (51 loc) · 1.89 KB
/
navigation.php
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
<?php
return [
'Quickstart' => 'docs/quickstart',
'The Basics' => [
'children' => [
'Installation' => 'docs/installation',
'Making Components' => 'docs/making-components',
'The <code>render()</code> Method' => 'docs/render-method',
'State Management' => 'docs/state-management',
'Computed Properties' => 'docs/computed-properties',
'The <code>mount()</code> Method' => 'docs/mount-method',
'Data Binding' => 'docs/data-binding',
'Triggering Actions' => 'docs/triggering-actions',
'Lifecycle Hooks' => 'docs/lifecycle-hooks',
'Events' => 'docs/events',
],
],
'Component Features' => [
'children' => [
'Validation' => 'docs/input-validation',
'Authorization' => 'docs/authorization',
'Pagination' => 'docs/pagination',
'Redirecting' => 'docs/redirecting',
'Nesting Components' => 'docs/nesting-components',
],
],
'UI Niceties' => [
'children' => [
'Defer Loading' => 'docs/defer-loading',
'Prefetching' => 'docs/prefetching',
'Polling' => 'docs/polling',
'Loading States' => 'docs/loading-states',
'Dirty States' => 'docs/dirty-states',
'Offline State' => 'docs/offline-state',
'CSS Transitions' => 'docs/css-transitions',
],
],
'JavaScript' => [
'children' => [
'Inline Scripts' => 'docs/inline-scripts',
'VueJs' => 'docs/vuejs',
'Third-Party Libraries' => 'docs/third-party-libraries',
'Web Components' => 'docs/web-components',
]
],
'Testing' => 'docs/testing',
'Troubleshooting' => 'docs/troubleshooting',
'SPA Mode' => 'docs/spa-mode',
'Security' => 'docs/security',
'API Reference' => 'docs/api',
];