M
M
moriokii2021-05-09 22:04:40
Vue.js
moriokii, 2021-05-09 22:04:40

Where are some good FREE tutorials for vue.js?

I want to learn how to use vuejs, but I don’t know where and there is no money

Answer the question

In order to leave comments, you need to log in

8 answer(s)
R
Rsa97, 2021-05-09
@moriokii

https://ru.vuejs.org/v2/guide/

T
tempick, 2021-05-09
@tempick

On YouTube, javascript.ninja is great at explaining and talking. But the course is not yet completed there, if I'm not mistaken.

R
Ruslan Demidov, 2021-05-13
@rd_nino

Free course on Vue from Ilya Klimov .

Y
Yupiter7575, 2021-05-09
@yupiter7575

Here are video tutorials for beginners
Here is the official reader
Here are rich articles from habr

V
Vladimir Korotenko, 2021-05-09
@firedragon

RTFM

P
posters, 2021-05-10
@posters

1) code.mu/ru/javascript/framework/vue/book/prime
2) https://metanit.com/web/vuejs/
3) https://webdevskills.com/catalog/vue-basics

Just in case.

Vue 3
Vue.createApp({
  data() {
    return {
      message: 'Привет, Vue!';
     }
  },
      methods: {
        check () {
            console.log('Hello');
        },
  }
}).mount('#app')

Vue 2
var app = new Vue({
  el: '#app',
  data: {
    message: 'Привет, Vue!';
  },
        methods:{
            check : function(){
                console.log('Hello');
            }
        }
})

C
CityCat4, 2021-05-10
@CityCat4

In books :D

A
Ankozar, 2021-05-11
@Ankozar

Look at YT Vladilen Minin. He has a pretty good mini-course on the latest version of Vue. I'm watching it myself now. And here they threw links to outdated guides, as I understand it.
Although I may not be right.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question