fixed #1568 and close #1593

This commit is contained in:
梁灏 2017-09-01 18:04:46 +08:00
parent 41918ed856
commit d293cc5ce7
2 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,6 @@
<template>
<div>
<Tooltip placement="top" transfer content="Tooltip 文字提示" :delay="1000">
<Tooltip always placement="top" transfer content="Tooltip 文字提示" :delay="1000">
<Button @click="disabled = true">延时1秒显示</Button>
</Tooltip>
<Tooltip placement="top" transfer content="Tooltip 文字提示">

View file

@ -85,6 +85,11 @@
}
}
}
},
mounted () {
if (this.always) {
this.updatePopper();
}
}
};
</script>