From 99a1fc3ad856fc1174b0197ecce5a9f69b7e8488 Mon Sep 17 00:00:00 2001 From: An Phan Date: Wed, 15 Jan 2020 19:17:08 +0100 Subject: [PATCH] fix: wrong data for Conditionals and Loops example --- src/guide/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/introduction.md b/src/guide/introduction.md index a83e669415..dd0a8d24cf 100644 --- a/src/guide/introduction.md +++ b/src/guide/introduction.md @@ -100,7 +100,7 @@ It's easy to toggle the presence of an element, too: const App3 = { data() { return { - message: 'You loaded this page on ' + new Date().toLocaleString() + seen: true } } }