N3-components/N3-components

View on GitHub
src/Mixin/localeMixin.js

Summary

Maintainability
A
0 mins
Test Coverage
import locale from '../Locale/index'

export default (name) => {
    return {
        methods: {
            getL(key) {
                return locale[name][key][this.n3Locale || window.n3Locale || 'zh']
            }   
        }
    }
};