PROPS(3)
-
props
PROPS img import reactImg from './assets/exam.png'; function App() { return ( {/* public 폴더에 sample.png 붙여넣기 할것*/} ); }; export default App; PROPS index.js 에서 막으면 결과가 출력 한번만 됨 import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App.js'; import reportWebVitals from './reportWebVitals'; const root = ReactDOM.createRoot(document.getElementByI..
2024.03.17 -
vue
vue.js vue - 푸론트 javascript 파일 vue2 : update 종료 cli 방식 p/g :프로젝트 단위로 vue 파일 작성 ⇒ build 이후 html 이나 jsp 에 포함 cdn 방식 p/g: 라이브러리를 html, jsp , thymeleaf 에서 직접 (jquery 방식) vue3 cli 방식 p/g :프로젝트 단위로 vue 파일 작성 ⇒ build 이후 html 이나 jsp 에 포함 cdn 방식 p/g: 라이브러리를 html, jsp , thymeleaf 에서 직접 (jquery 방식) vue create 프로젝트명 npm install npm run serve ⇒server 가동 ctrl + c ⇒ 서버 끄기 App.vue 부모컴포넌트의 값 {{x}} {{ y }} {{z[0]..
2024.03.13 -
spring - property
property 이순신 echoBean public class EchoBean { String aaa; public String sayEcho() { return "hello"; } public EchoBean() { System.out.println("반드시 필요ㅘㄴ !!! 기본생ㅇ성자 호출"); } public String getAaa() { return aaa; } public void setMesg(String mesg) { System.out.println("setMesg(String mesg)호출"); this.aaa = mesg; } } main GenericXmlApplicationContext ctx = new GenericXmlApplicationContext("classpath:com..
2024.02.06