2024年08月04日 建站教程
功能介绍:vue项目开发需要在一个el-input
中输入中文在另一个el-input
自动生成拼音,想要实现这个功能需要了解一下js-pinyin
的运用方法!
1、安装脚手架
npm i js-pinyin
2、在需要的页面中引入
import Pinyin from "js-pinyin";
3、方法调用
console.log(pinyin.getFullChars('管理员')); //GuanLiYuan console.log(pinyin.getCamelChars('管理员')); //GLY console.log(pinyin.getCamelChars('1234')); //1234 console.log(pinyin.getCamelChars('english')); //english
本文链接:http://so.lmcjl.com/news/9927/