PronounsPage/plugins/spelling.js
Andrea Vos d296edc414 easter egg 😈
2021-11-15 22:17:50 +01:00

25 lines
603 B
JavaScript

import {mapState} from "vuex";
import zhConverter from "zh_cn_zh_tw";
import futurus from 'avris-futurus';
export default {
computed: {
...mapState([
'spelling',
]),
},
methods: {
handleSpelling(str) {
if (this.config.locale === 'zh' && this.spelling === 'simplified') {
return zhConverter.convertToSimplifiedChinese(str);
}
if (this.config.locale === 'pl' && this.spelling === 'futurysci') {
return futurus.futuriseText(str);
}
return str;
}
},
}