This commit is contained in:
simple321vip
2023-01-05 17:41:43 +08:00
parent 92c084765d
commit d4cbfc2418
76 changed files with 62 additions and 60 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
<script setup lang="ts">
import APlayer from 'aplayer';
// import APlayer from 'aplayer';
import 'aplayer/dist/APlayer.min.css';
import { reactive, nextTick, onBeforeUnmount, getCurrentInstance, onMounted, ref } from 'vue'
+1
View File
@@ -0,0 +1 @@
declare module 'v-contextmenu'
+1 -1
View File
@@ -135,7 +135,7 @@ const concelSubscribe = () => {
})
}
const Formatter = (row, column) => {
const Formatter = (row: any, column: any) => {
let diff = (row.last_price - row.open_price) / row.open_price
return toPercent(diff)
}