debugIsFalse

Results 8 issues of debugIsFalse

when i use typescript i set webpack module loaders `{ test : /\.tsx?$/, include: path.resolve(__dirname, './src/router/'), loaders : ['bundle-loader?lazy', 'babel-loader','ts-loader'] }` and it will show me the error 'props.load is...

flag: Needs more info

修复不能在mounted执行弹窗方法

在组件里的mounted直接调用this.$Spin.show()会直接报错 演示DEMO: https://run.iviewui.com/9Sgtf0Sr

在组件的onMounted调用this.$Spin.show(),然后再关闭this.$Spin.hide(),控制台报错。 ```js export default { mounted () { this.$Spin.show() setTimeout(() => { this.$Spin.hide() }, 3000) } } ```

Bug