vuikit
Version:
A responsive Vue UI library for web site interfaces based on UIkit
19 lines (15 loc) • 375 B
JavaScript
/**
* Vuikit 0.8.10
* (c) 2018 Miljan Aleksic
* @license MIT
**/
/* Substantial part of the code is adapted from UIkit,
Copyright (c) 2013-2018 YOOtheme GmbH, getuikit.com */
var index = {
inserted: function inserted (el, binding, vnode) {
vnode.context.$nextTick(function () {
vnode.context.$root.$el.appendChild(el);
});
}
}
export default index;