vue elementUI 对话框Dialog 打开后滚条回到顶部

正常情况下网页虽然不会显示滚动条了,但是不会回到顶部.

1.点击弹出对话框的标签是a标签,而且加了href,去掉href就可以了(代码如下可以自己试试)

<template>
  <div class="big">
	  <el-dialog
	    title="提示"
	    :visible.sync="centerDialogVisible"
	    width="30%"
	    center
		>
	    <span>需要注意的是内容是默认不居中的</span>
	    <span slot="footer" class="dialog-footer">
	      <el-button @click="centerDialogVisible = false">取 消</el-button>
	      <el-button type="primary" @click="centerDialogVisible = false">确 定</el-button>
	    </span>
	  </el-dialog>
	  <button @click="centerDialogVisible = true" class="btn">点击打开 Dialog</button>
	  <a href="#" @click="centerDialogVisible = true" class="btn">点击打开 Dialog</a>
  </div>
</template>

<script>
export default {
  name: 'App',
  data(){
	  return{
		 centerDialogVisible: false
	  }
  },
  methods:{
  }
}
</script>

<style>
.big{
	height: 9999px;
	width: 600px;
	background-color: pink;
}
.btn{
	position: relative;
	top: 5000px;
}
</style>

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值