этот участок на Vue 3(Composition API) ?
computed: {
fullName: {
// геттер:
get: function () {
return this.firstName + ' ' + this.lastName
},
// сеттер:
set: function (newValue) {
var names = newValue.split(' ')
this.firstName = names[0]
this.lastName = names[names.length - 1]
}
}
}
const fullName = computed({ get: () => ${firstName.value} ${lastName.value}, set: (v) => { … } }); где firstName и lastName - рефы
https://v3.ru.vuejs.org/ru/api/computed-watch-api.html#computed
что не работает?
нет, прости, все отлично, спасибо большое
Обсуждают сегодня