1.0.1 • Published 4 years ago
vue-resize v1.0.1
vue-resize
Detect DOM element resizing
Sponsors
Installation
npm install --save vue-resize
Module import
⚠️ You need to include the package CSS:
import 'vue-resize/dist/vue-resize.css'
Then import the package and install it into Vue:
import Vue from 'vue'
import VueResize from 'vue-resize'
Vue.use(VueResize)
Or:
import Vue from 'vue'
import { ResizeObserver } from 'vue-resize'
Vue.component('resize-observer', ResizeObserver)
Browser
<link rel="stylesheet" href="vue-resize/dist/vue-resize.css"/>
<script src="vue.js"></script>
<script src="vue-resize/dist/vue-resize.min.js"></script>
The plugin should be auto-installed. If not, you can install it manually:
Vue.use(VueResize)
Or:
Vue.component('resize-observer', VueResize.ResizeObserver)
Usage
Add the <resize-observer>
inside a DOM element and make its position to something other than 'static'
(for example 'relative'
), so that the observer can fill it.
Listen to the notify
event that is fired when the above DOM element is resized.
Example
<template>
<div class="demo">
<h1>Hello world!</h1>
<resize-observer @notify="handleResize" />
</div>
</template>
<script>
export default {
methods: {
handleResize ({ width, height }) {
console.log('resized', width, height)
}
}
}
</script>
<style scoped>
.demo {
position: relative;
}
</style>
License
1.0.1
4 years ago
2.0.0-alpha.1
4 years ago
1.0.0
4 years ago
0.5.0
5 years ago
0.4.5
6 years ago
0.4.4
7 years ago
0.4.3
7 years ago
0.4.2
7 years ago
0.4.1
7 years ago
0.4.0
7 years ago
0.3.0
7 years ago
0.2.1
7 years ago
0.2.0
7 years ago
0.1.4
7 years ago
0.1.3
7 years ago
0.1.2
8 years ago
0.1.1
8 years ago
0.1.0
8 years ago
0.0.2
8 years ago
0.0.1
8 years ago