google_online
@google_online
My morning begins with coffee and Twitter.

Почему get не возвращает ничего из computed 'task'?

Почему не могу получить 'oldValue' из get не возвращает ничего.
{{ question }}
<v-btn @click="get_new_value">click me</v-btn>


<script>
export default {
	name: 'Questions',
	props: ['name'],
	data() {
		return {
			question: ''
		}
	},
	computed: {
		task: {
			get: function() {
				return this.question = 'oldValue'
			},
			set: function() {
				return this.question = newValue
			}
		}
	},
	methods: {
		get_new_value() {
			this.task = 'something new value'
		},
        }
</script>

ЗЫ: решил по другому.
  • Вопрос задан
  • 64 просмотра
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы