@@ -1635,13 +1635,13 @@ type: api
1635
1635
1636
1636
### component
1637
1637
1638
- - ** 特性 :**
1638
+ - ** Props :**
1639
1639
- ` is ` - string | ComponentDefinition | ComponentConstructor
1640
1640
- ` inline-template ` - boolean
1641
1641
1642
1642
- ** 用法:**
1643
1643
1644
- 渲染一个“元组件”为动态组件。依 ` is ` 的值决定哪个组件被渲染 。
1644
+ 渲染一个“元组件”为动态组件。依 ` is ` 的值, 来决定哪个组件被渲染 。
1645
1645
1646
1646
``` html
1647
1647
<!-- 动态组件由 vm 实例的属性值 `componentId` 控制 -->
@@ -1655,7 +1655,7 @@ type: api
1655
1655
1656
1656
### transition
1657
1657
1658
- - ** 特性 :**
1658
+ - ** Props :**
1659
1659
- ` name ` - string, 用于自动生成 CSS 过渡类名。例如:` name: 'fade' ` 将自动拓展为` .fade-enter ` ,` .fade-enter-active ` 等。默认类名为 ` "v" `
1660
1660
- ` appear ` - boolean, 是否在初始渲染时使用过渡。默认为 ` false ` 。
1661
1661
- ` css ` - boolean, 是否使用 CSS 过渡类。默认为 ` true ` 。如果设置为 ` false ` ,将只通过组件事件触发注册的 JavaScript 钩子。
@@ -1718,7 +1718,7 @@ type: api
1718
1718
1719
1719
### transition-group
1720
1720
1721
- - ** 特性 :**
1721
+ - ** Props :**
1722
1722
- ` tag ` - string, 默认为 ` span `
1723
1723
- ` move-class ` - 覆盖移动过渡期间应用的 CSS 类。
1724
1724
- 除了 ` mode ` ,其他特性和 ` <transition> ` 相同。
@@ -1780,15 +1780,14 @@ type: api
1780
1780
1781
1781
### slot
1782
1782
1783
- - ** 特性 :**
1783
+ - ** Props :**
1784
1784
- ` name ` - string, 用于命名插槽。
1785
1785
1786
1786
- ** Usage:**
1787
1787
1788
1788
` <slot> ` 元素作为组件模板之中的内容分发插槽。 ` <slot> ` 元素自身将被替换。
1789
1789
1790
- 详细用法,请参考下面 guide 部分的链接。
1791
- For detailed usage, see the guide section linked below.
1790
+ 详细用法,请参考下面教程的链接。
1792
1791
1793
1792
- ** 另见:** [ 使用Slots分发内容] ( /guide/components.html#使用Slots分发内容 )
1794
1793
0 commit comments