0๐
โ
You have to change your import
Try this
import { ref } from 'vue';
You can see the documentation of Vue.js (template refs)
0๐
For anyone having this issue in the future, for some reason when writing "import ref" your code editor may wrongly autocomplete it with capitalized { Ref }
instead of the right { ref }
Source:stackexchange.com