반응형
출처: https://vueshowcase.com/question/vue-reactivity-transform-ref-not-defined
이 글을 보고 해결하였습니다. vite 필요한건 아니고
eslint 가 방해하는거 였군요
// .eslintrc.js
module.exports = {
// (생략)
globals: {
$ref: "readonly",
$computed: "readonly",
$shallowRef: "readonly",
$customRef: "readonly",
$toRef: "readonly",
},
};
global 변수 등록 해서 해결했습니다..
반응형