コンポーネントの活性時に再計算するように (#5829)

This commit is contained in:
fuyu 2020-02-05 07:54:49 +09:00 committed by GitHub
parent aade954dd7
commit 8e21458e16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
export default {
inserted(el, binding) {
inserted(el, binding, vn) {
const query = binding.value;
/*
@ -31,7 +31,7 @@ export default {
const calc = () => {
const width = el.clientWidth;
for (const q of query) {
if (q.max) {
if (width <= q.max) {
@ -55,6 +55,7 @@ export default {
el._sizeResizeCb_ = calc;
window.addEventListener('resize', calc);
vn.context.$on('hook:activated', calc);
},
unbind(el, binding, vn) {