похожее под капотом?
const get = (p, o) =>
p.reduce((xs, x) => (xs && xs[x]) ? xs[x] : null, o)
// let's pass in our props object...
console.log(get(['user', 'posts', 0, 'comments'], props))
// [ 'Good one!', 'Interesting...' ]
чтобы не городить такие конструкции
if (this.$auth.user.profile.data.content && this.$auth.user.profile.data.content.autosave) {
return this.$auth.user.profile.data.content.autosave
}
return AutosaveContent.minute_1
а в чём сложность использовать это как хелпер?
под капотом такого наверняка нет, ибо зачем
вроде есть новый синтаксис
Обсуждают сегодня