@Icantdothis

Unexpected token `@`. Expected identifier, string literal, numeric literal or [ for the computed key?

Проект собран на Vite.
Пытаюсь использовать декоратор @computed, но злая машина выдаёт мне ошибку в сути вопроса..
import { makeAutoObservable, computed  } from 'mobx'
class Store {

    menu = false
    constructor() {
        makeAutoObservable(this);
    }

    setMenu = () => {
        this.menu = true
        console.log('s', this.menu)
    }
    @computed get total() {
        return this.menu
    }
    get menuState () {
        return this.menu
    }
}
export  default  new Store()
  • Вопрос задан
  • 1120 просмотров
Пригласить эксперта
Ответы на вопрос 1
Ваш ответ на вопрос

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

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