Skip to content

Commit 7877046

Browse files
Create MetaListOp.vue
1 parent 18b17ef commit 7877046

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<template>
2+
<div class="options">
3+
<div id="options" class="select-options">
4+
<slot name="items"></slot>
5+
</div>
6+
<div class="bottom">
7+
<slot name="bottom"></slot>
8+
</div>
9+
</div>
10+
</template>
11+
12+
<style lang="less" scoped>
13+
.options {
14+
width: 100%;
15+
.bottom {
16+
display: flex;
17+
padding: 2px;
18+
margin-top: 4px;
19+
}
20+
}
21+
</style>

0 commit comments

Comments
 (0)