瀏覽代碼

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 {};

部分文件因文件數量過多而無法顯示