Skip to content

Instantly share code, notes, and snippets.

@toanalien
Created April 3, 2017 09:59
Show Gist options
  • Select an option

  • Save toanalien/bbf1b1d17cff9dafa260550e2062f84e to your computer and use it in GitHub Desktop.

Select an option

Save toanalien/bbf1b1d17cff9dafa260550e2062f84e to your computer and use it in GitHub Desktop.
vue-i18n example
import Vue from 'vue'
import i18n from 'voo-i18n'
const translations = {
'es': {
'Hello world': 'Hola Mundo'
},
'fr': {
'Hello world': 'Bonjour le monde'
},
'pirate': {
'Hello world': 'Land ho!'
}
}
Vue.use(i18n, translations)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment