Vue.component('Loading', { template: `
`, props: { isShow: { default: true } }, data() { return { isShowLoadingBar: this.isShow, } }, methods: { hide() { this.isShowLoadingBar = false }, show() { this.isShowLoadingBar = true; } } })