Appearance
getUUID 获取 UUID
javascript
//生成UUID
import { getCurrentInstance } from "vue";
const { proxy } = getCurrentInstance();
let uuid = proxy.$util.getUUID();
1
2
3
4
2
3
4