⬆️ Upgrade: upgrade deps

This commit is contained in:
萌萌哒赫萝
2023-08-27 07:48:08 -07:00
parent e15aa846e5
commit bfbfef17b2
10 changed files with 2531 additions and 486 deletions

View File

@@ -1,4 +1,6 @@
import { isReactive, isRef, toRaw, unref } from 'vue'
import { sendToMain } from './dataSender'
import { OPEN_URL } from '~/universal/events/constants'
/**
* get raw data from reactive or ref
@@ -16,3 +18,7 @@ export const getRawData = (args: any): any => {
}
return args
}
export const openURL = (url: string) => {
sendToMain(OPEN_URL, url)
}