[Vuejs]-Node_modules does not provide an export named 'Ref' on Vue.js component

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 }

Leave a comment