I am trying to learn vue . I grabbed a demo project and have much of it working but I am not sure I under stand what this does.
const search = ref("");
const movies= ref([]);
in the template and other places it then accesses the value using search.value. Why use Ref("") ?