vuecli로 프로젝트 생성후 vue add vuetify 로 vuetify를 추가한후 실행했을때 아래와 같은 에러가 나왔을때 Could not find a declaration file for module 'vuetify/lib' Try `npm install @types/vuetify` if it exists or add a new declaration (.d.ts) file containing `declare module 'vuetify/lib';` typescript를 쓰고있는데 위와같이 에러가 나올경우 tsconfig.js >types 에 "veutify"를 추가하면 된다. "types": [ "webpack-env", "mocha", "chai", "vuetify" ],
intellij debuging 할때 collect 변수를 확인한다거나 할때 아래와 같은 메시지가 뜬다면,,, intellij unable to evaluate the expression cannot find source class for java.util.list jdk 버전이 제대로 설정이 되어있는지를 확인한다. 프로젝트셋팅 cmd + ; -> SDKs 를 확인하자
gradle 기본셋팅 후 webcontroller 생성@RestController public class WebController { @GetMapping public String test() { return "hello"; } } test code 작성import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; import org.springframework.boot.test.context.SpringBootTest; import org.s..
var pattern = /([^가-힣\x20])/i; var target = '' if (pattern.test(target)) { alert("자음, 모음 validation."); } https://codepen.io/beans9/pen/yLNgNGo See the Pen 한글 자음 모음 테스트 by homin ahn (@beans9) on CodePen.
$("#mydropzone").dropzone({ init: function() { var $this = this; $("button#clear-dropzone").click(function() { $this.removeAllFiles(true); }); } }); dropzone 안에 파일을 모두 삭제한다. how to cancel to upload in dropzone.js
'livereload' extension does not work https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei you can use this 'livereload++'https://chrome.google.com/webstore/detail/livereload%2B%2B/ciehpookapcdlakedibajeccomagbfab/related livereload가 동작하지 않을때 크롬에 확장프로그램을 livereload가 아닌 livereload++을 사용하시면 됩니다. tag : could not download livereload,js