I use vue-toasted. I registered vue-toasted in main.js and use it as below:
import Toasted from 'vue-toasted'
Vue.use(Toasted, Option)
And use it like this in a vue component
this.$toasted.error("Temperature too Hot").goAway(5000),
But I do not know how to change the position of toasted message. The current position is 'top-right'. How do I change this?
By just following the link you provided, it is apparent that you can change the position with the Container Position setting.
Also you can set the position according to the API page.