Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
On YouTube, javascript.ninja is great at explaining and talking. But the course is not yet completed there, if I'm not mistaken.
Here are video tutorials for beginners
Here is the official reader
Here are rich articles from habr
1) code.mu/ru/javascript/framework/vue/book/prime
2) https://metanit.com/web/vuejs/
3) https://webdevskills.com/catalog/vue-basics
Vue.createApp({
data() {
return {
message: 'Привет, Vue!';
}
},
methods: {
check () {
console.log('Hello');
},
}
}).mount('#app')
var app = new Vue({
el: '#app',
data: {
message: 'Привет, Vue!';
},
methods:{
check : function(){
console.log('Hello');
}
}
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question