♻️ (music) change lib to handle youtube video

This commit is contained in:
2020-07-11 00:19:08 +02:00
parent 1fb3d1d39f
commit af7da49a3f
3 changed files with 68 additions and 12 deletions

9
src/hooks/useMusic.ts Normal file
View File

@@ -0,0 +1,9 @@
import { ref } from '@vue/composition-api'
export const useMusic = () => {
const hasMusic = ref(true)
return {
hasMusic
}
}