Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/tutorial/src/step-2/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ What you see in the editor is a Vue Single-File Component (SFC). An SFC is a reu

</div>

The core feature of Vue is **declarative rendering**: using a template syntax that extends HTML, we can describe how the HTML should look like based on JavaScript state. When the state changes, the HTML updates automatically.
The core feature of Vue is **declarative rendering**: using a template syntax that extends HTML, we can describe what the HTML should look like based on JavaScript state. When the state changes, the HTML updates automatically.

<div class="composition-api">

State that can trigger updates when changed are considered **reactive**. We can declare reactive state using Vue's `reactive()` API. Objects created from `reactive()` are JavaScript [Proxies](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy) that work just like normal objects:
A state that can trigger updates when changed is considered **reactive**. We can declare reactive states using Vue's `reactive()` API. Objects created from `reactive()` are JavaScript [Proxies](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy) that work just like normal objects:

```js
import { reactive } from 'vue'
Expand Down