TypeSelectBar.vue 260 字节
Newer Older
Z
Zachary 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<template>
  <div class="mod_singer_tag" id="tag_box">
    <slot></slot>
  </div>
</template>

<script>
export default {

}
</script>

<style scoped>
.mod_singer_tag {
  background-color: #fbfbfd;
  padding: 34px 0 17px 40px;
  margin: 30px 0 20px;
}
</style>