vue compile添加html,javascript - VueJS re-compile HTML in an inline-template component - Stack Overflo...

I've wrapped bootstrapTable (https://github.com/wenzhixin/bootstrap-table) into a directive, like this:

Vue.directive('bootstraptable', {

priority: 1000,

params: ['url', 'resource-name'],

bind: function () {

var _self = this;

$(this.el)

.bootstrapTable({

pagination: true,

pageSize: 15,

pageList: [],

sidePagination: 'server',

url: this.params.url,

queryParams: function (params) {

return params;

},

cookie: true,

cookieExpire: '24h',

cookieIdTable: this.params.resourceName + '-table',

locale: 'it-IT'

}).on('load-success.bs.table', function (e, data) {

$('[data-toggle="tooltip"]').tooltip();

_self.vm.$compile(_self.vm.$el);

});

},

update: function (value) {

$(this.el).val(value)

},

unbind: function () {

$(this.el).off().bootstrapTable('destroy')

}

});

The JSON returned from the server contains a button with a v-on directive so I have to recompile the injected HTML rows to have the button directives properly working.

Anyway, it seems that the following code isn't working:

_self.vm.$compile(_self.vm.$el);

Am I missing something obvious?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值