Last active
March 10, 2019 15:09
-
-
Save borie88/48f2849de27197e8d890c1655f050260 to your computer and use it in GitHub Desktop.
Store.js for i18n Mini Program
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import languageStrings from './i18n/strings' | |
export default { | |
data: { | |
language: 'en', | |
strings: languageStrings | |
}, | |
getLanguage () { | |
return this.data.language | |
}, | |
showLoading () { | |
wx.showLoading({ | |
title: this.data.strings[this.data.language].loadingTitle, | |
mask: true | |
}) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment