Код: Выделить всё
const app = Vue.createApp({
data() {
return {
log: []
}
},
methods: {
add() {
const {log} = this
log.push(`Entry added X seconds ago!`)
}
}
})
app.mount('#app')< /code>
[i]Click the button to add a new entry [/i]+
Подробнее здесь: https://stackoverflow.com/questions/796 ... of-seconds
Мобильная версия