Blame view

node_modules/bootstrap-vue/esm/utils/get-instance-from-directive.js 179 Bytes
4cd4fd28   郭伟龙   feat: 初始化项目
1
2
3
4
import { isVue3 } from '../vue';
export var getInstanceFromDirective = function getInstanceFromDirective(vnode, bindings) {
  return isVue3 ? bindings.instance : vnode.context;
};