From f56a9b6e97f0814095ccdae4b0848220a9b60ca6 Mon Sep 17 00:00:00 2001 From: Simon Knox Date: Thu, 6 Dec 2018 14:24:25 +1100 Subject: Remove note on dom prop names --- doc/development/new_fe_guide/style/vue.md | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/doc/development/new_fe_guide/style/vue.md b/doc/development/new_fe_guide/style/vue.md index 1dc76d1e476..3692048d225 100644 --- a/doc/development/new_fe_guide/style/vue.md +++ b/doc/development/new_fe_guide/style/vue.md @@ -13,7 +13,7 @@ In addition to the style guidelines set by Vue, we also have a few specific rule - [1.2](#no-singleton) **Do not use singleton for service or store**. -- [1.3](#init) **Initialize root Vue components** Use a function in the bundle file to instantiate Vue components +- [1.3](#init) **Initialize root Vue components**. Use a function in the bundle file to instantiate Vue components ``` // bad @@ -51,17 +51,4 @@ document.addEventListener('DOMContentLoaded', () => new Vue({ ``` -## Attributes - - -- [2.1](#dom-prop) **Avoid DOM component prop names** - -``` -// bad - - -// good - -``` - [plugin-recommended]: https://github.com/vuejs/eslint-plugin-vue#gear-configs -- cgit v1.2.1