wx-mini-weview
Version:
weixin UI
35 lines (27 loc) • 608 B
JavaScript
const { WvInheritable } = require('../../behaviors/WvInheritable');
const { WvComponentEvent } = require('../../behaviors/WvComponentEvent');
Component({
options: {
styleIsolation: 'apply-shared',
multipleSlots: true
},
relations: {
'../unroll/unroll': {
type: 'parent',
linked(target) {
this.linkParentNode('unroll', target);
},
unlinked() {
this.unlinkParentNode('unroll');
}
}
},
behaviors: [
WvComponentEvent,
WvInheritable({})
],
properties: {
},
methods: {
}
});