Newer
Older
dcms_front / src / views / baseSource / components / toolsContainer.vue
StephanieGitHub on 17 Mar 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>