liushengqiang 1 yıl önce
ebeveyn
işleme
26366d1d5f
2 değiştirilmiş dosya ile 3 ekleme ve 5 silme
  1. 1 3
      src/pc/main.ts
  2. 2 2
      src/pc/types.ts

+ 1 - 3
src/pc/main.ts

@@ -10,7 +10,5 @@ import { createApp } from "vue";
 import App from "./App";
 import router from "./router";
 import "@varlet/touch-emulator";
-import ArcoVue from "@arco-design/web-vue";
-import "@arco-design/web-vue/dist/arco.css";
 
-createApp(App).use(router).use(ArcoVue).mount("#app");
+createApp(App).use(router).mount("#app");

+ 2 - 2
src/pc/types.ts

@@ -7,8 +7,6 @@ export interface INote {
 	content: string;
 	/** 音符类型 */
 	noteType: string;
-	/** 拍号 */
-	meter: string;
 	/** 谱号 */
 	clef: string;
 	/** 调号 */
@@ -47,6 +45,8 @@ export interface IMeasure {
 	key: string;
 	/** 反复跳跃 */
 	repeat: string;
+	/** 拍号 */
+	meter: string;
     
 }