When I use the component it always starts in english and then blips over to whatever locale I set to use.
This looks quite terrible to the user, how can I prevent this? Why is it going to english first and then to my locale (in this case swedish)
My settings:
import Vue from 'vue'
import VueTimeago from 'vue-timeago'
Vue.use(VueTimeago, {
name: 'timeago', // Component name, `Timeago` by default
locale: 'sv',
locales: {
'sv': require('date-fns/locale/sv')
}
})
When I use the component it always starts in english and then blips over to whatever locale I set to use. This looks quite terrible to the user, how can I prevent this? Why is it going to english first and then to my locale (in this case swedish) My settings: