diff options
-rw-r--r-- | doc/development/fe_guide/style_guide_js.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/fe_guide/style_guide_js.md b/doc/development/fe_guide/style_guide_js.md index 32224e6ff48..6a660ff1788 100644 --- a/doc/development/fe_guide/style_guide_js.md +++ b/doc/development/fe_guide/style_guide_js.md @@ -514,7 +514,7 @@ A forEach will cause side effects, it will be mutating the array being iterated. ### The Javascript/Vue Accord The goal of this accord is to make sure we are all on the same page. -1. When writing Vue, you may not use jQuery in your application. You may query the DOM 1 time while bootstrapping your application to grab data attributes using `dataset`. Using jQuery with Vue can be useful, however it is impossible to come up with a specific rule of proper usage within Vue, and can always . +1. When writing Vue, you may not use jQuery in your application. You may query the DOM 1 time while bootstrapping your application to grab data attributes using `dataset`. Using jQuery with Vue can be useful, however it is impossible to come up with a specific rule of proper usage within Vue. 1. You may have a temporary but immediate need to create technical debt by writing code that does not follow our standards, to be refactored later. You may do this as long as: 1. The technical debt is handled in the next release by you. |