mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
21 lines
396 B
JavaScript
21 lines
396 B
JavaScript
/**
|
|
* Add necessary functionalities into a (song-list type) component.
|
|
*/
|
|
|
|
import addToMenu from '../components/shared/add-to-menu.vue';
|
|
|
|
export default {
|
|
components: { addToMenu },
|
|
|
|
data() {
|
|
return {
|
|
showingAddToMenu: false,
|
|
};
|
|
},
|
|
|
|
events: {
|
|
'add-to-menu:close': function () {
|
|
this.showingAddToMenu = false;
|
|
},
|
|
},
|
|
};
|