Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
vue-window-size
Advanced tools
Provides reactivity window size properties for Vue.js.
$ yarn add vue-window-size
Plugin all components have window sizes.
Components with mixin have window sizes. Other components don't have window sizes.
Install plugin
import Vue from 'vue';
import VueWindowSize from 'vue-window-size';
Vue.use(VueWindowSize);
Use with component
<template>
<div>
<p>window width: {{ windowWidth }}</p>
<p>window height: {{ windowHeight }}</p>
</div>
</template>
Use with component
<template>
<div>
<p>window width: {{ windowWidth }}</p>
<p>window height: {{ windowHeight }}</p>
</div>
</template>
<script>
import { vueWindowSizeMixin } from 'vue-window-size';
export default {
mixins: [vueWindowSizeMixin],
};
</script>
delay
(option)Number
33
Change delay time of resize event.
e.g.
import Vue from 'vue';
import VueWindowSize from 'vue-window-size';
Vue.use(VueWindowSize, {
delay: 100,
});
setDelay(delay: number)
Same as delay option.
import { vueWindowSize } from 'vue-window-size';
vueWindowSize.setDelay(1000);
init()
Initialize the plugin. Usually called automatically. Please call it if you want to use it again after destroy.
import { vueWindowSize } from 'vue-window-size';
vueWindowSize.init();
destroy()
Remove the resize event.
import { vueWindowSize } from 'vue-window-size';
vueWindowSize.destroy();
This library add addEventListener only once, even if it is used in mixin. So basically you do not need to call removeEventListener. If you want to call removeEventListener please call destroy method.
If you find a bug or want to contribute to the code or documentation, you can help by submitting an issue or a pull request.
FAQs
Reactivity window size for Vue.js.
The npm package vue-window-size receives a total of 2,360 weekly downloads. As such, vue-window-size popularity was classified as popular.
We found that vue-window-size demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.