How to make the el-tooltip of element-ui pop up when it appears and then disappear after a few seconds of tips, display?

A column in the

page table has an el-tooltip,. Whether it is displayed or not is controlled by v-if, and how to make it not only display when v-if is established, but also pop up tips text prompts?

            <span v-if="x"  @click.stop="func(props.row)">
                  <el-tooltip class="item" effect="dark" content="web" placement="top">
                  <i class="iconfont icon-lianjie connect_vnc icon_class"></i>
                  </el-tooltip>
            </span>
Feb.27,2021

suggests that you use popover directly to make it easier to control. I read the document and it seems that tooltip can only have hover events.

Menu