Hỏi & Đáp
vue-loading-overlay show 오류 발생
main.js import 'vue-loading-overlay/dist/css/index.css' app.component('vue-loading', VueLoading) // app.use(VueLoading) --> component로 이동 LoadingOverlayView.vue Full page? fetch Data Cancel export default { data() { return { isLoading: false, fullPage: true } }, methods: { doAjax() { this.isLoading = true // simulate AJAX setTimeout(() => { this.isLoading = false }, 5000) }, onCancel() { this.isLoading = false console.log('User cancelled the loader.') } } } 우선 위와 같이 수정하니까 되는데 조금 단순하게 하는 방법은 없을까요?
- Lượt thích
- 0
- Số bình luận
- 2
- Lượt xem
- 465

