https://www.npmjs.com/package/getpinyin
npm install getpinyin --save
import { getFirstPY, getFullPY } from 'getpinyin'
const { getFirstPY, getFullPY } = require('getpinyin')
console.log(getFirstPY('国')) // g
console.log(getFirstPY('中国')) // zg
console.log(getFullPY('国')) // guo
console.log(getFullPY('中国')) // zhongguo
没有对多音字进行处理