1. 程式人生 > 其它 >vue 漢字轉拼音字母

vue 漢字轉拼音字母

技術標籤:vuevue.js

一、安裝

npm install js-pinyin --save

二、使用

script標籤中引入

<script>
let pinyin = require('js-pinyin');

export default {
 data(){
     return{
         
     }
 },
 mounted(){
    console.log(pinyin.getFullChars('部落格'));//BoKe
    console.log(pinyin.getCamelChars('部落格'));//BK
    console.
log(pinyin.getCamelChars('12部落格34'));//12BK34 console.log(pinyin.getCamelChars('a部落格b'));//aBKb } };
</script>