Reading some vuejs 3 with Composition API docs I see 2 possible way of vars declaring, like
const var_name = ref('')
or
let var_name = ref('')
and looks like var declared with “const” can be modified(say getting data with axios request). I do not see any errors when I use similar code inb my app.
Are these declarations the same? Which way is preferable?