From ee7ad3f82fdffc8e0118d1a3899c1479d89af5e8 Mon Sep 17 00:00:00 2001 From: Dmitriy Aleksandrovich Date: Mon, 31 Aug 2020 12:27:05 +0300 Subject: [PATCH] order-of-words-in-component-names It hurts. https://vuejs.org/v2/style-guide/#Order-of-words-in-component-names-strongly-recommended --- src/v2/guide/instance.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/v2/guide/instance.md b/src/v2/guide/instance.md index 16525cc7df..36fc78fde6 100644 --- a/src/v2/guide/instance.md +++ b/src/v2/guide/instance.md @@ -24,10 +24,10 @@ A Vue application consists of a **root Vue instance** created with `new Vue`, op Root Instance └─ TodoList ├─ TodoItem - │ ├─ DeleteTodoButton - │ └─ EditTodoButton + │ ├─ TodoButtonDelete + │ └─ TodoButtonEdit └─ TodoListFooter - ├─ ClearTodosButton + ├─ TodosButtonClear └─ TodoListStatistics ```