Skip to content

Commit dfc309f

Browse files
committed
Basic title translation of "api/built-in-components.md"
1 parent 87cd3fd commit dfc309f

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

src/api/built-in-components.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Built-In Components
1+
# Componentes Integrados
22

33
## component
44

5-
- **Props:**
5+
- **Propriedades:**
66

77
- `is` - `string | Component`
88

9-
- **Usage:**
9+
- **Uso:**
1010

1111
A "meta component" for rendering dynamic components. The actual component to render is determined by the `is` prop. An `is` prop as a string could be either an HTML tag name or a Component name.
1212

13-
- **Example:**
13+
- **Exemplo:**
1414

1515
```html
1616
<!-- a dynamic component controlled by -->
@@ -27,11 +27,11 @@
2727
<component :is="href ? 'a' : 'span'"></component>
2828
```
2929

30-
- **See also:** [Dynamic Components](../guide/component-dynamic-async.html)
30+
- **Ver também:** [Dynamic Components](../guide/component-dynamic-async.html)
3131

3232
## transition
3333

34-
- **Props:**
34+
- **Propriedades:**
3535

3636
- `name` - `string` Used to automatically generate transition CSS class names. e.g. `name: 'fade'` will auto expand to `.fade-enter`, `.fade-enter-active`, etc.
3737
- `appear` - `boolean`, Whether to apply transition on initial render. Defaults to `false`.
@@ -50,7 +50,7 @@
5050
- `leave-active-class` - `string`
5151
- `appear-active-class` - `string`
5252

53-
- **Events:**
53+
- **Eventos:**
5454

5555
- `before-enter`
5656
- `before-leave`
@@ -64,7 +64,7 @@
6464
- `leave-cancelled` (`v-show` only)
6565
- `appear-cancelled`
6666

67-
- **Usage:**
67+
- **Uso:**
6868

6969
`<transition>` serve as transition effects for **single** element/component. The `<transition>` only applies the transition behavior to the wrapped content inside; it doesn't render an extra DOM element, or show up in the inspected component hierarchy.
7070

@@ -101,21 +101,21 @@
101101
app.mount('#transition-demo')
102102
```
103103

104-
- **See also:** [Enter & Leave Transitions](/guide/transitions-enterleave.html#transitioning-single-elements-components)
104+
- **Ver também:** [Enter & Leave Transitions](/guide/transitions-enterleave.html#transitioning-single-elements-components)
105105

106106
## transition-group
107107

108-
- **Props:**
108+
- **Propriedades:**
109109

110110
- `tag` - `string`, defaults to `span`.
111111
- `move-class` - overwrite CSS class applied during moving transition.
112112
- exposes the same props as `<transition>` except `mode`.
113113

114-
- **Events:**
114+
- **Eventos:**
115115

116116
- exposes the same events as `<transition>`.
117117

118-
- **Usage:**
118+
- **Uso:**
119119

120120
`<transition-group>` serve as transition effects for **multiple** elements/components. The `<transition-group>` renders a real DOM element. By default it renders a `<span>`, and you can configure what element it should render via the `tag` attribute.
121121

@@ -131,17 +131,17 @@
131131
</transition-group>
132132
```
133133

134-
- **See also:** [List Transitions](/guide/transitions-list.html)
134+
- **Ver também:** [List Transitions](/guide/transitions-list.html)
135135

136136
## keep-alive
137137

138-
- **Props:**
138+
- **Propriedades:**
139139

140140
- `include` - `string | RegExp | Array`. Only components with matching names will be cached.
141141
- `exclude` - `string | RegExp | Array`. Any component with a matching name will not be cached.
142142
- `max` - `number | string`. The maximum number of component instances to cache.
143143

144-
- **Usage:**
144+
- **Uso:**
145145

146146
When wrapped around a dynamic component, `<keep-alive>` caches the inactive component instances without destroying them. Similar to `<transition>`, `<keep-alive>` is an abstract component: it doesn't render a DOM element itself, and doesn't show up in the component parent chain.
147147

@@ -208,25 +208,25 @@
208208
`<keep-alive>` does not work with functional components because they do not have instances to be cached.
209209
:::
210210

211-
- **See also:** [Dynamic Components - keep-alive](../guide/component-dynamic-async.html#dynamic-components-with-keep-alive)
211+
- **Ver também:** [Dynamic Components - keep-alive](../guide/component-dynamic-async.html#dynamic-components-with-keep-alive)
212212

213213
## slot
214214

215-
- **Props:**
215+
- **Propriedades:**
216216

217217
- `name` - `string`, Used for named slot.
218218

219-
- **Usage:**
219+
- **Uso:**
220220

221221
`<slot>` serve as content distribution outlets in component templates. `<slot>` itself will be replaced.
222222

223223
For detailed usage, see the guide section linked below.
224224

225-
- **See also:** [Content Distribution with Slots](../guide/component-basics.html#content-distribution-with-slots)
225+
- **Ver também:** [Content Distribution with Slots](../guide/component-basics.html#content-distribution-with-slots)
226226

227227
## teleport
228228

229-
- **Props:**
229+
- **Propriedades:**
230230

231231
- `to` - `string`. Required prop, has to be a valid query selector, or an HTMLElement (if used in a browser environment). Specifies a target element where `<teleport>` content will be moved
232232

@@ -251,4 +251,4 @@
251251

252252
Notice that this will move the actual DOM nodes instead of being destroyed and recreated, and it will keep any component instances alive as well. All stateful HTML elements (i.e. a playing video) will keep their state.
253253

254-
- **See also:** [Teleport component](../guide/teleport.html#teleport)
254+
- **Ver também:** [Teleport component](../guide/teleport.html#teleport)

0 commit comments

Comments
 (0)