直播软件搭建,element ui Backtop 回到顶部

发布时间 2023-08-31 14:09:55作者: 云豹科技-苏凌霄

直播软件搭建,element ui Backtop 回到顶部

 

<template>
  <!-- 统计绘图 -->
  <div id="drawing">  //此处class="wraper"
    <el-backtop target=".wraper">    // 和此处的target=".wraper" 对应
      <div
        style="{
                height: 100%;
                width: 100%;
               
                box-shadow: 0 0 6px rgba(0,0,0, .12);
                text-align: center;
                line-height: 40px;
                color: #1989fa;
               }"
      >UP</div>
    </el-backtop>
    <div>
 
    </div>
  </div>
</template>
<script>
export default {
  name: "drawing",
  data() {
    return {};
  }
};
</script>
<style scoped>
#drawing {    // 给class="wraper"的标签设置属性
  height: 100%;
  overflow: auto;
}
</style>

以上就是 直播软件搭建,element ui Backtop 回到顶部,更多内容欢迎关注之后的文章