文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
slots
- 类型:
{[name: string]: Array<Component>|Component|string}
为组件提供一个 slot 内容的对象。该对象中的键名就是相应的 slot 名,键值可以是一个组件、一个组件数组、一个字符串模板或文本。
- 示例:
import {shallowAttach} from 'san-test-utils';
import foo from './foo';
const bazComponent = {
name: 'baz-component',
template: '<p>baz</p>'
};
const wrapper = shallowAttach(component, {
slots: {
default: [foo, '<my-component />', 'text'],
fooBar: foo, // 将会匹配 `<slot name="fooBar" />`.
foo: '<div />',
bar: 'bar',
baz: bazComponent,
qux: '<my-component />'
}
});
expect(wrapper.find('div')).toBe(true);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论