- 강의 질문
- 개발/데이터
자 패캠 담당자 분들 문제가 뭘까요?
2025.09.08 20:10 작성
<template>
<div
class="parent"
@click="handlerA">
<div
class="child"
@click="handlerB"></div>
</div>
</template>
<script>
export default {
methods: {
handlerA() {
console.log('A')
},
handlerB() {
console.log('B')
}
}
}
</script>
<style scoped lang="scss">
.parent {
width: 200px;
height: 100px;
background-color: royalblue;
margin: 10px;
padding: 10px;
.child {
width: 100px;
height: 100px;
background-color: orange;
}
}
</style>
vue 강의중인데
이 부분 화면에 출력 안되네요
이건 지피티도 명확한 해결을 못주네요
해결 방법을 한번 줘보시져
웹팩이랑 패키지제이슨 파일들
강의당시 버전으로 다 맞춰논건데도
이럽니다