mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Update API doc
This commit is contained in:
parent
dc724ea2d3
commit
31dde8355a
3 changed files with 20 additions and 7 deletions
|
@ -55,12 +55,12 @@ describe('Tree.vue', () => {
|
|||
expect(wrapper.emitted('filter')).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should render icon', ({expect})=>{
|
||||
it('should render icon', ({ expect }) => {
|
||||
expect(wrapper.find('span.pi-inbox').exists()).toBeTruthy();
|
||||
expect(wrapper.find('span.pi-inbox').classes('p-treenode-icon')).toBeTruthy()
|
||||
})
|
||||
expect(wrapper.find('span.pi-inbox').classes('p-treenode-icon')).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should render icon slot', ({expect})=>{
|
||||
it('should render icon slot', ({ expect }) => {
|
||||
let wrapper = mount(Tree, {
|
||||
slots: {
|
||||
nodeIcon: `<i data-node-icon/>`
|
||||
|
@ -80,5 +80,5 @@ describe('Tree.vue', () => {
|
|||
const nodeIcon = wrapper.find('i[data-node-icon]');
|
||||
|
||||
expect(nodeIcon.exists()).toBeTruthy();
|
||||
})
|
||||
});
|
||||
});
|
||||
|
|
|
@ -33,10 +33,10 @@
|
|||
</template>
|
||||
</Checkbox>
|
||||
<template v-if="templates['nodeIcon']">
|
||||
<component :is="templates['nodeIcon']" v-bind="getPTOptions('nodeIcon')" :class="cx('nodeIcon')" :node="node"></component>
|
||||
<component :is="templates['nodeIcon']" v-bind="getPTOptions('nodeIcon')" :class="cx('nodeIcon')" :node="node"></component>
|
||||
</template>
|
||||
<template v-else>
|
||||
<span :class="[cx('nodeIcon'), node.icon]" v-bind="getPTOptions('nodeIcon')"></span>
|
||||
<span :class="[cx('nodeIcon'), node.icon]" v-bind="getPTOptions('nodeIcon')"></span>
|
||||
</template>
|
||||
<span :class="cx('label')" v-bind="getPTOptions('label')" @keydown.stop>
|
||||
<component v-if="templates[node.type] || templates['default']" :is="templates[node.type] || templates['default']" :node="node" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue