From 8b8d2311dcd2918f1d7d6ecad11d13f9907649d3 Mon Sep 17 00:00:00 2001 From: RinatMadreiter <95545985+RinatMadreiter@users.noreply.github.com> Date: Fri, 30 Aug 2024 13:39:32 +0200 Subject: [PATCH] Update MemoedList.ts fixed typos --- ch02/src/components/MemoedList.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ch02/src/components/MemoedList.ts b/ch02/src/components/MemoedList.ts index dafc8eb..8081976 100644 --- a/ch02/src/components/MemoedList.ts +++ b/ch02/src/components/MemoedList.ts @@ -6,10 +6,10 @@ export const MemoedList = { :key="image.id" :style=" selected === image.id ? { border: '1px solid blue' } : {}" @click="selected = image.id" - v-memo="[selected === image.id]" <1> + v-memo="[selected === image.id]" > -
{{image.title}} +

{{image.title}}

`, @@ -39,4 +39,4 @@ export const MemoedList = { }] } } -} \ No newline at end of file +}