You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
302 B

  1. <template lang="pug">
  2. v-list.py-2(dense, :class='color', :dark='dark')
  3. slot
  4. </template>
  5. <script>
  6. export default {
  7. props: {
  8. color: {
  9. type: String,
  10. default: 'primary'
  11. },
  12. dark: {
  13. type: Boolean,
  14. default: true
  15. }
  16. },
  17. data() {
  18. return {}
  19. }
  20. }
  21. </script>