<button @click="openCustomView">
클릭하여 새 창 열기
</button>
const openCustomView= () => {
window.open(
'#/customView',
'',
'resizable=no,status=no,width=1150,height=950',
);
};
모달 말고 새로운 윈도우 여는 법입니다.
<button @click="openCustomView">
클릭하여 새 창 열기
</button>
const openCustomView= () => {
window.open(
'#/customView',
'',
'resizable=no,status=no,width=1150,height=950',
);
};
모달 말고 새로운 윈도우 여는 법입니다.