Skip to content

Commit 54a03c1

Browse files
committed
adjust advanced guide section order
1 parent 2879fa4 commit 54a03c1

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/guide/reactivity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Reactivity in Depth
33
type: guide
4-
order: 15
4+
order: 12
55
---
66

77
We've covered most of the basics - now it's time to take a deep dive! One of Vue's most distinct features is the unobtrusive reactivity system. Models are just plain JavaScript objects. When you modify them, the view updates. It makes state management very simple and intuitive, but it's also important to understand how it works to avoid some common gotchas. In this section, we are going to dig into some of the lower-level details of Vue's reactivity system.

src/guide/render-function.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Render Functions
33
type: guide
4-
order: 14
4+
order: 15
55
---
66

77
## Basics
@@ -160,12 +160,12 @@ One thing to note: similar to how `v-bind:class` and `v-bind:style` have special
160160
nativeOn: {
161161
click: this.nativeClickHandler
162162
},
163-
// Custom directives. Note that the binding's
163+
// Custom directives. Note that the binding's
164164
// oldValue cannot be set, as Vue keeps track
165165
// of it for you.
166166
directives: [
167167
{
168-
name: 'my-custom-directive',
168+
name: 'my-custom-directive',
169169
value: '2'
170170
expression: '1 + 1',
171171
arg: 'foo',

src/guide/transitioning-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Transitioning State
33
type: guide
4-
order: 13
4+
order: 14
55
---
66

77
Vue's transition system offers many simple ways to animate entering, leaving, and lists, but what about animating your data itself? For example:

src/guide/transitions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Transition Effects'
33
type: guide
4-
order: 12
4+
order: 13
55
---
66

77
## Overview

themes/vue/layout/partials/sidebar.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<% if (fileName === 'installation') { %>
2525
<li><h3>Essentials</h3></li>
2626
<% } %>
27-
<% if (fileName === 'transitions') { %>
27+
<% if (fileName === 'reactivity') { %>
2828
<li><h3>Advanced</h3></li>
2929
<% } %>
3030
<% if (fileName === 'migration') { %>

0 commit comments

Comments
 (0)