Skip to content

Commit 3d3a7ea

Browse files
author
Matteo Rigon
committed
Merge branch 'develop'
2 parents 978c3a3 + 05edfe4 commit 3d3a7ea

15 files changed

+10227
-3974
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/node_modules
22
/coverage
33
/demo/node_modules
4-
/.nuxt
4+
/.nuxt

README.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Reactive window size and media query states for VueJS. Supports your favourite U
1212
✔ Reactive media query states and device orientation 💻📲<br>
1313
✔ Detect touch screen capability 👆🖱<br>
1414
✔ breakpoints for most common ui frameworks provided out of the box: Tailwind, Bootstrap, Bulma, Foundation, Materialize, Semantic UI ⚙ 📦<br>
15-
✔ SSR compatible 🚀 📟 (Nuxt module and Gridsome plugin coming 🔜) <br>
15+
✔ SSR compatible 🚀 📟 (Nuxt module included) <br>
1616

1717
## Requirements
1818

@@ -219,7 +219,27 @@ To view default breakpoint keys and values for each framework, [click here](http
219219
<br><br>
220220
#### &lt;callback name&gt;
221221
*Any*<br>
222-
Every callback specified in the configuration will have a corresponding property indicating the result of the callback. Callbacks will be called on every debounced resize event.
222+
Every callback specified in the configuration will have a corresponding property indicating the result of the callback. Callbacks will be called on every debounced resize event.
223+
224+
## Nuxt module
225+
The library can be used directly as a Nuxt module, just add it to the module section in `nuxt.config.js`:
226+
227+
```js
228+
export default {
229+
...
230+
...
231+
modules: [
232+
'vue-screen/nuxt',
233+
],
234+
235+
screen: {
236+
extend: 'bootstrap',
237+
},
238+
...
239+
...
240+
}
241+
```
242+
223243

224244
## Browser support
225245

demo/package-lock.json

+59-63
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)