소스 검색

refactor: converted station page to composition API

Kristian Vos 2 년 전
부모
커밋
90b20e2868
2개의 변경된 파일571개의 추가작업 그리고 865개의 파일을 삭제
  1. 564 862
      frontend/src/pages/Station/index.vue
  2. 7 3
      frontend/src/types/global.d.ts

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 564 - 862
frontend/src/pages/Station/index.vue


+ 7 - 3
frontend/src/types/global.d.ts

@@ -1,7 +1,11 @@
+/* eslint no-var: 0 */
+/* eslint vars-on-top: 0 */
+
 declare global {
-	const lofig: any;
-	const stationInterval: number;
-	const YT: any;
+	var lofig: any;
+	var stationInterval: number;
+	var YT: any;
+	var stationNextSongTimeout: any;
 }
 
 export {};

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.