Create a translate mixin

parent ed2c8f37
export default {
props: {
translations: {default: null}
},
methods: {
translate(namespace, name) {
return _.get(this.translations[namespace], name);
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment