From de16915b214f04884e8eab8c1ada52a2a4818f7a Mon Sep 17 00:00:00 2001 From: Filipa Lacerda Date: Mon, 13 Mar 2017 10:21:06 +0000 Subject: [PATCH] Fix bad code example --- doc/development/frontend.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/development/frontend.md b/doc/development/frontend.md index c5ee44988ac..e7add17fe2d 100644 --- a/doc/development/frontend.md +++ b/doc/development/frontend.md @@ -66,7 +66,7 @@ Let's look into each of them: This is the index file of your new feature. This is where the root Vue instance of the new feature should be. -The Store and the Service should be loaded in this file and provided as a prop to the main component. +The Store and the Service should be imported and initialized in this file and provided as a prop to the main component. Don't forget to follow [these steps.][page_specific_javascript] @@ -353,7 +353,7 @@ Good: ```javascript class Foo { constructor(opts) { - opts.container.querySelector('.bar'); + document.querySelector(`${opts.container} .bar`); } }