Last active
April 3, 2017 10:04
-
-
Save toanalien/a8b7128b0ef29baca7d084efcc49e3e7 to your computer and use it in GitHub Desktop.
vue-i18n example config
This file contains hidden or 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
| <template> | |
| <h1>{{ 'Hello world' | translate }}</h1> | |
| </template> | |
| <script> | |
| export default { | |
| data () { | |
| return { | |
| locale: 'en' | |
| } | |
| } | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment