Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
methods: { getOne: function () { this.getTwo() }, getTwo: function () { alert("Hello") }, }
export default { created: function () { this.getOne() }, data () { return { bg_2: false } }, methods: { getOne: function () { this.getTwo() }, getTwo: function () { alert("Hello") } } }
created надо сменить на mounted
methods: { getOne: () => {} }