Newer
Older
garbageClassificationFront / src / views / overview / components / toolsContainer.vue
StephanieGitHub on 22 May 2021 431 bytes MOD:垃圾分类子系统联调前代码
<!--
 * @Description: 工具容器
 * @Author: 王晓颖
 * @Date: 2021-03-10 09:30:20
 -->
<template>
  <div class="tools-container">
    <slot/>
  </div>
</template>

<script>
export default {
  name: 'ToolsContainer'
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
.tools-container{
  width:auto;
  position: absolute;
  right:50px;
  top:20px;
  z-index:10000;
  display: flex;
  justify-content: end;
}
</style>