Skip to content

Commit e98859a

Browse files
committed
tweak choices order/phrasing
1 parent 739919d commit e98859a

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

src/guide/introduction.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,14 @@ Check out our [FAQ](/about/faq).
206206
Different developers have different learning styles. Feel free to pick a learning path that suits your preference - although we do recommend going over all content if possible!
207207

208208
<div class="vt-box-container next-steps">
209+
<a class="vt-box" href="/guide/quick-start.html">
210+
<p class="next-steps-link">Continue the Guide</p>
211+
<p class="next-steps-caption">The guide walks you through every aspect of the framework in full details.</p>
212+
</a>
209213
<a class="vt-box" href="/tutorial/">
210214
<p class="next-steps-link">Follow the Tutorial</p>
211215
<p class="next-steps-caption">For those who prefer learning things hands-on. Let's build something real!</p>
212216
</a>
213-
<a class="vt-box" href="/guide/quick-start.html">
214-
<p class="next-steps-link">Continue the Guide</p>
215-
<p class="next-steps-caption">An in-depth guide that walks through the core concepts in full detail.</p>
216-
</a>
217217
<a class="vt-box" href="/examples/">
218218
<p class="next-steps-link">Check out the Examples</p>
219219
<p class="next-steps-caption">Take a quick tour of core features and examples of common UI tasks.</p>

src/guide/quick-start.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ As we dive deeper into the guide, we may need to split our code into separate Ja
118118
```html
119119
<!-- index.html -->
120120
<script type="module">
121-
import { createApp } from 'vue'
122-
import MyComponent from './my-component.js'
121+
import { createApp } from 'vue'
122+
import MyComponent from './my-component.js'
123123
124-
createApp(MyComponent).mount('#app')
124+
createApp(MyComponent).mount('#app')
125125
</script>
126126
```
127127

@@ -144,14 +144,14 @@ You may have noticed that the imported component's template is inlined as a Java
144144
If you skipped the [Introduction](/guide/introduction), we strongly recommend reading it before moving on to the rest of the documentation.
145145

146146
<div class="vt-box-container next-steps">
147+
<a class="vt-box" href="/guide/quick-start.html">
148+
<p class="next-steps-link">Continue the Guide</p>
149+
<p class="next-steps-caption">The guide walks you through every aspect of the framework in full details.</p>
150+
</a>
147151
<a class="vt-box" href="/tutorial/">
148152
<p class="next-steps-link">Follow the Tutorial</p>
149153
<p class="next-steps-caption">For those who prefer learning things hands-on. Let's build something real!</p>
150154
</a>
151-
<a class="vt-box" href="/guide/essentials/application.html">
152-
<p class="next-steps-link">Continue the Guide</p>
153-
<p class="next-steps-caption">An in-depth guide that walks through the core concepts in full detail.</p>
154-
</a>
155155
<a class="vt-box" href="/examples/">
156156
<p class="next-steps-link">Check out the Examples</p>
157157
<p class="next-steps-caption">Take a quick tour of core features and examples of common UI tasks.</p>

0 commit comments

Comments
 (0)