This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/plugins/spelling.js

20 lines
421 B
JavaScript

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