'eslint'에 해당하는 글 1건





출처: https://vueshowcase.com/question/vue-reactivity-transform-ref-not-defined

 

vue reactivity transform $ref not defined

 

vueshowcase.com

이 글을 보고 해결하였습니다. vite 필요한건 아니고
eslint 가 방해하는거 였군요

 

// .eslintrc.js
module.exports = {
  // (생략)
  globals: {
    $ref: "readonly",
    $computed: "readonly",
    $shallowRef: "readonly",
    $customRef: "readonly",
    $toRef: "readonly",
  },
};

global 변수 등록 해서 해결했습니다..

 


WRITTEN BY
SIDNFT
게임개발자에서 WEBGL 웹개발자로 전환중

,