vue.js 에서 윈도우 팝업 띄우는 예제 컴포넌트 폴더에 popup.vue 파일을 추가 src\components\winPopup.vue 팝업입니다 팝업을 띄울 페이지에 코드 추가 pages\pageEx1.vue routes.js에 winPopup 추가 { path: "/popup", component: () => import("layouts/PopupLayout.vue"), children: [ { path: "/winPopup", component: () => import("components/popup/winPopup.vue"), }, ], }, routes.js 전체코드 const routes = [ { path: "/", component: () => import("layouts/MainLay..