refactor track list components
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
<template>
|
||||
<b-dropdown variant="link" boundary="window" no-caret toggle-class="p-0">
|
||||
<b-dropdown
|
||||
variant="link"
|
||||
boundary="window"
|
||||
no-caret
|
||||
toggle-class="p-0"
|
||||
:disabled="disabled"
|
||||
>
|
||||
<template #button-content>
|
||||
<Icon icon="three-dots-vertical" />
|
||||
</template>
|
||||
@@ -9,5 +15,9 @@
|
||||
<script lang="ts">
|
||||
import Vue from 'vue'
|
||||
|
||||
export default Vue.extend({})
|
||||
export default Vue.extend({
|
||||
props: {
|
||||
disabled: { type: Boolean, default: false }
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user