From 46227c02d8dd88b8d2e6ba07aa85f15b18058936 Mon Sep 17 00:00:00 2001 From: 1sm <31946591+1sm23@users.noreply.github.com> Date: Wed, 26 May 2021 09:25:15 +0800 Subject: [PATCH] fix: json format quotation --- src/guide/migration/data-option.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/guide/migration/data-option.md b/src/guide/migration/data-option.md index 3399f554b4..3d914909cf 100644 --- a/src/guide/migration/data-option.md +++ b/src/guide/migration/data-option.md @@ -94,9 +94,9 @@ In Vue 2.x, the resulting `$data` is: ```json { - user: { - id: 2, - name: 'Jack' + "user": { + "id": 2, + "name": "Jack" } } ``` @@ -105,8 +105,8 @@ In 3.0, the result will be: ```json { - user: { - id: 2 + "user": { + "id": 2 } } ```