You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/api/built-in-components.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,20 @@
1
1
# Componentes Integrados
2
2
3
-
Built-in components can be used directly in templates without needing to be registered.
3
+
Os componentes integrados podem ser usados diretamente em modelos sem a necessidade de registro.
4
4
5
-
The `<keep-alive>`, `<transition>`, `<transition-group>`, and`<teleport>`components can all be tree-shaken by bundlers, so that they are only included in the build if they're used. They can also be imported explicitly if you need direct access to the component itself:
5
+
Os componentes `<keep-alive>`, `<transition>`, `<transition-group>`, e`<teleport>`podem ser todos modificados por bundlers (empacotadores), de modo que só são incluídos na construção se eles são usados. Eles também podem ser importados explicitamente se você precisar de acesso direto ao próprio componente:
`<component>`and`<slot>`are component-like features of template syntax. They are not true components and they can't be imported like the components shown above.
17
+
`<component>`e`<slot>`são recursos semelhantes a sintaxe de template de componentes. Eles não são componentes verdadeiros e não podem ser importados como os componentes mostrados acima.
The built-in components`KeepAlive`, `Transition`, `TransitionGroup`, and`Teleport`can all be passed to `is`, but you must register them if you want to pass them by name. For example:
44
+
Os componentes integrados`KeepAlive`, `Transition`, `TransitionGroup`, e`Teleport`podem ser passados para `is`, mas você deve registra-los se quiser transmiti-los por nome. Por exemplo:
0 commit comments