Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/renderless/src/tag/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ export const handleClose =
export const handleClick =
({ emit, props, parent, state }: Pick<ITagRenderlessParams, 'emit' | 'props' | 'parent' | 'state'>) =>
(event: Event) => {
// pc端没有selectable属性,不能以取反判断,会阻止pc的点击事件
if (props.selectable || props.disabled) return
if (props.disabled) return

parent.$parent && parent.$parent.tagSelectable && event.stopPropagation()
state.selected = !state.selected
Expand Down
Loading