summaryrefslogtreecommitdiff
path: root/doc/development/fe_guide/vue3_migration.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/development/fe_guide/vue3_migration.md')
-rw-r--r--doc/development/fe_guide/vue3_migration.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/development/fe_guide/vue3_migration.md b/doc/development/fe_guide/vue3_migration.md
index 7ab48db7f76..afdb2690c02 100644
--- a/doc/development/fe_guide/vue3_migration.md
+++ b/doc/development/fe_guide/vue3_migration.md
@@ -76,6 +76,9 @@ const FunctionalComp = (props, slots) => {
}
```
+NOTE: **Note:**
+It is not recommended to replace stateful components with functional components unless you absolutely need a performance improvement right now. In Vue 3, performance gains for functional components will be negligible.
+
## Old slots syntax with `slot` attribute
**Why?**