단순 vue 앱이 아무것도 표시되지 않음 전체 코드: https://github.com/kenpeter/test_vue_template git clone https://github.com/kenpeter/test_vue_template 설치:yarn install 실행:yarn dev 방문하다localhost:8080아무것도 보지 못하다왜냐하면 당신은 당신의 루트 컴포넌트에 아무것도 렌더링하지 않았기 때문이다. 당신 안에index.html, 렌더링app구성 요소: 이것을 하는 데는 여러 가지 방법이 있다.만지기 싫으면index.html, 당신은 또한 수정할수 있다.main.js. 아래의 모든코드가작동해야 함: new Vue({ el: '#app', render: h => h(App), components..