Easily create responsive Vue.js components with ResizeObserver
npm install vue-responsive-componentsCreate responsive components with ResizeObserver.
Check out my post on ITNEXT
```
npm install vue-responsive-components
`javascript
import Vue from "vue"
import { VueResponsiveComponents } from "vue-responsive-components"
Vue.use(VueResponsiveComponents)
`
It will add Responsive component and v-responsive directive
#### Responsive component with scoped slot
`vue
{{post.text}}
`
#### v-responsive directive
> Thanks to this guy for idea
`vue
{{post.text}}
`
#### Mixin
`vue
{{post.text}}
``
MIT