doum
2025-09-23 bcadfb6de692c138774688efd7928a973d59860f
admin/src/components/common/Scrollbar.vue
对比新文件
@@ -0,0 +1,22 @@
<template>
  <vue-scroll :ops="options">
    <slot></slot>
  </vue-scroll>
</template>
<script>
import VueScroll from 'vuescroll'
export default {
  name: 'Scrollbar',
  components: { VueScroll },
  data () {
    return {
      options: {
        bar: {
          background: 'rgba(20,20,20,.3)'
        }
      }
    }
  }
}
</script>