popup component

This commit is contained in:
cookfront 2017-02-16 16:38:47 +08:00
parent 18c9d2c933
commit 3a1fca4953

View File

@ -14,7 +14,6 @@ const getDOM = function(dom) {
let scrollBarWidth;
const getScrollBarWidth = () => {
if (Vue.prototype.$isServer) return;
if (scrollBarWidth !== undefined) return scrollBarWidth;
const outer = document.createElement('div');
@ -76,14 +75,7 @@ export default {
if (val) {
if (this.opening) return;
if (!this.rendered) {
this.rendered = true;
Vue.nextTick(() => {
this.open();
});
} else {
this.open();
}
this.open();
} else {
this.close();
}