Commit fa18e932 authored by Valère's avatar Valère Committed by iamkun

Link : Fix opening href on disabled el-link (#15347)

parent 4531254d
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
disabled && 'is-disabled', disabled && 'is-disabled',
underline && !disabled && 'is-underline' underline && !disabled && 'is-underline'
]" ]"
:href="href" :href="disabled ? null : href"
v-bind="$attrs" v-bind="$attrs"
@click="handleClick" @click="handleClick"
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment