반응형
메서드 내 로컬 변수 상태에 액세스하는 방법 - Vue?
메서드 내 로컬 변수 상태에 액세스하는 방법 - Vue?
팝업 창을 열 수 있도록 대화상자 값을 설정해야 합니다.
포팅으로 Then return data를 로드한 후 popUp을 열고 싶습니다.
import { mapState, mapGetters, mapActions } from 'vuex'
export default {
name: 'PageIndex',
data () {
return {
dialog: false,
}
},
methods: {
...mapActions('example', ['retrievePratica']),
aulaPratica (tipo, aula) {
var data = { 'tipo': tipo, 'aula': aula }
this.retrievePratica(data).then(function () {
this.$store.state.dialog = true <------ Here
})
}
}
}
화살표 기능을 사용하여 로컬 데이터에 액세스할 수 있습니다.dialog
타고this.dialog
this.retrievePratica(data)
.then(() => {
this.dialog = true
})
언급URL : https://stackoverflow.com/questions/55958835/how-to-access-the-state-of-a-local-variable-within-a-method-vue
반응형
'programing' 카테고리의 다른 글
Vuex - 변환 중인 업데이트 개체 (0) | 2022.07.11 |
---|---|
VueJS 컴포넌트를 Google Map Infowindow로 렌더링 (0) | 2022.07.11 |
예외조항 중 어떤 부분이 비용이 많이 드나요? (0) | 2022.07.11 |
포인터 '디레퍼런스'란 무슨 뜻입니까? (0) | 2022.07.11 |
미래 목록 대기 중 (0) | 2022.07.11 |