使用pjax后vue方法不起作用

时间:2018-10-19 14:50:55

标签: javascript vue.js pjax

我在我的项目中使用pjax。在使用它之前,一切都还好。但是在使用pjax之后,方法将不起作用,只有在 mount 属性中调用的方法才能很好地工作。我的pjax选项是:

$(document).pjax('.tab-link',{container: '#pjax-container', timeout: 5000});
    $(document).on('pjax:error', function (event, xhr, textStatus, errorThrown, options) {
        options.success(xhr.responseText, textStatus, xhr);
        return false;
    });

我该怎么办?

0 个答案:

没有答案