安装

npm install uuid 或 yarn add uuid  或 pnpm add uuid

import { v4 as uuid4 } from 'uuid'

/** 生成一个以字母开始的唯一标识符 */ 
    function generateLetterPrefixedId() {  
        let id = '';  
        do {  
            // 生成一个UUID并取其前几个字符  
            id = uuid4().substring(0, 8).toUpperCase();
            // 如果第一个字符不是字母,则继续循环  
        } 
        while (!/^[a-zA-Z]/.test(id));  
        return id;
    } 

const id = generateLetterPrefixedId();
console.log(id )  // EE43F48D

uuid.d.ts 

uuid.d.ts

declare module 'uuid'

Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐