This commit is contained in:
lmj
2022-09-13 11:36:46 +08:00
parent 6292650ac8
commit 9ffc39c358
2 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<template>
<div>
<div class="note-hear">
<h3>我的笔记</h3>
<div>
<el-button>导入</el-button>
<el-button>导出</el-button>
</div>
</div>
<div class="note-sift">
<el-button>默认按钮</el-button>
<el-button>默认按钮</el-button>
<el-button>默认按钮</el-button>
<el-button>默认按钮</el-button>
</div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.note-hear{
padding: 38px 42px;
h3{
margin: 0;
float: left;
font-size: 18px;
font-weight: 600;
color: #333333;
}
div{
float: right;
button{
width: 140px;
font-size: 14px;
height: 40px;
border-radius: 4px;
border: 1px solid rgba(153,153,153,0.2);
}
}
}
</style>