美文网首页
使用vux框架,发现this.$vux获取不到,导致Loadin

使用vux框架,发现this.$vux获取不到,导致Loadin

作者: 泪滴在琴上 | 来源:发表于2019-01-02 15:51 被阅读20次
    <div style="padding: 15px;">
                <x-button @click.native="showLoading" type="primary">显示loading(2s后关闭)</x-button>
            </div>
    
    showLoading () {
                this.$vux.loading.show({
                    text: 'Loading'
                })
                setTimeout(() => {
                    this.$vux.loading.hide()
                }, 2000)
            },
    

    提示报错:Uncaught TypeError: Cannot read property 'loading' of undefined
    解决办法:在main.js中引入

    import  { LoadingPlugin } from 'vux'
    Vue.use(LoadingPlugin)
    
    psb.gif

    相关文章

      网友评论

          本文标题:使用vux框架,发现this.$vux获取不到,导致Loadin

          本文链接:https://www.haomeiwen.com/subject/nabzlqtx.html