Totally based on d6u/react-container-query.
The following documentation is also originated from d6u/react-container-query.
Your suggested to pay a visit to the repo react-container-query
.
npm i -D vue-container-query
<template>
<container-query
:query="query"
v-model="params"
@change="handleChange"
>
<pre class="app">{{ params }}</pre>
</container-query>
</template>
<script>
import { ContainerQuery } from './'
const query = {
'width-between-400-and-599': {
minWidth: 400,
maxWidth: 599
},
'width-larger-than-600': {
minWidth: 600
}
}
export default {
components: { ContainerQuery },
data () {
return { query, params: {} }
},
methods: {
handleChange () {}
}
}
</script>
-
props.children
There should only be **one, and exactly one ** child component.
-
props.query
"query" is key-value pairs where keys are the class names that will be applied to container element when all constraints are met. The values are the constraints.
-
props.initialSize
(optional)initialSize
is an object with optionalwidth
orheight
property. Because the limitation on how size is computed based on underlying element, in the initial rendering pass, we don't have the size info (because element must be in the DOM have a valid size). At this timeinitialSize
will be used as the size of the element.
<template>
<pre class="app">{{ containerQuery }}</pre>
</template>
<script>
import { createContainerQueryMixin } from './'
const query = {
'width-between-400-and-599': {
minWidth: 400,
maxWidth: 599
},
'width-larger-than-600': {
minWidth: 600
}
}
export default {
mixins: [
createContainerQueryMixin(query)
]
}
</script>