All Projects → vanhoofmaarten → Nuxt Mq

vanhoofmaarten / Nuxt Mq

Licence: mit
vue-mq module for Nuxt.js.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Nuxt Mq

Vuex Orm Examples Nuxt
The example Nuxt application to demonstrate the use case of the Vuex ORM.
Stars: ✭ 63 (-32.26%)
Mutual labels:  nuxt
Nuxt Chat App
Frontend of real-time chat application built using nuxtjs, socket.io. Check the backend at https://github.com/binbytes/chat-app-server.
Stars: ✭ 77 (-17.2%)
Mutual labels:  nuxt
Nuxt Graphql Request
Easy Minimal GraphQL client integration with Nuxt.js.
Stars: ✭ 85 (-8.6%)
Mutual labels:  nuxt
Ecommerce Netlify
🛍 A JAMstack Ecommerce Site built with Nuxt and Netlify Functions
Stars: ✭ 1,147 (+1133.33%)
Mutual labels:  nuxt
Nuxt Tailwind
A Nuxt.js starter project template using Tailwind CSS without the distraction of a complicated development environment.
Stars: ✭ 71 (-23.66%)
Mutual labels:  nuxt
Fontawesome Module
Module to use Font Awesome icons in Nuxt.js
Stars: ✭ 79 (-15.05%)
Mutual labels:  nuxt
Prestashop
Free PWA & SPA for PrestaShop
Stars: ✭ 59 (-36.56%)
Mutual labels:  nuxt
Sails Nuxt
Sails + Nuxt + Vuetify Combo <3
Stars: ✭ 92 (-1.08%)
Mutual labels:  nuxt
Docker Nuxt
Docker image to run NUXT.js application in production mode
Stars: ✭ 71 (-23.66%)
Mutual labels:  nuxt
Community Modules
Stars: ✭ 1,258 (+1252.69%)
Mutual labels:  nuxt
Vue Storefront
The open-source frontend for any eCommerce. Built with a PWA and headless approach, using a modern JS stack. We have custom integrations with Magento, commercetools, Shopware and Shopify and total coverage is just a matter of time. The API approach also allows you to merge VSF with any third-party tool like CMS, payment gateways or analytics. Ne…
Stars: ✭ 9,111 (+9696.77%)
Mutual labels:  nuxt
Sample Vue Shop
See readme for newer repo details! A sample shop that shows how to manage payments with Vue, Stripe, and Serverless Functions
Stars: ✭ 1,166 (+1153.76%)
Mutual labels:  nuxt
Vue Masonry Wall
A pure vue responsive masonry layout without direct dom manipulation and ssr support.
Stars: ✭ 79 (-15.05%)
Mutual labels:  nuxt
Truechain Official
The official website of Truechain
Stars: ✭ 65 (-30.11%)
Mutual labels:  nuxt
Nuxt Egg
Nuxt.js + Egg FrameWork
Stars: ✭ 86 (-7.53%)
Mutual labels:  nuxt
Nuxt Compress
A simple static asset compression module for Nuxt that runs Gzip and Brotli compression during the build process
Stars: ✭ 61 (-34.41%)
Mutual labels:  nuxt
Bbs Go
基于Golang的开源社区系统。
Stars: ✭ 1,212 (+1203.23%)
Mutual labels:  nuxt
Content
Nuxt Content lets you write in a content/ directory and fetch your Markdown, JSON, YAML, XML and CSV files through a MongoDB like API, acting as a Git-based Headless CMS
Stars: ✭ 1,311 (+1309.68%)
Mutual labels:  nuxt
Example Ecommerce Snipcart Vue
The Transglobal Candy Store: Sample front-end for the Sanity.io e-commerce schema with vue.js, nuxt.js, and snipcart
Stars: ✭ 89 (-4.3%)
Mutual labels:  nuxt
Nuxt Stories
Nuxt stories module -- Painless (and now insanely fast) storybooking for Nuxt
Stars: ✭ 81 (-12.9%)
Mutual labels:  nuxt

nuxt-mq

npm (scoped with tag) npm CircleCI Codecov Dependencies js-standard-style

📖 Release Notes

Features

vue-mq module for Nuxt.js.

Setup

  • Add nuxt-mq dependency using yarn or npm to your project
  • Add nuxt-mq to modules section of nuxt.config.js
{
  modules: [
    // Simple usage
    [
      'nuxt-mq',
      {
        // Default breakpoint for SSR
        defaultBreakpoint: 'sm',
        breakpoints: {
          sm: 450,
          md: 1250,
          lg: Infinity
        }
      }
    ]
  ];
}

using top level options

{
  modules: [
    ['nuxt-mq']
  ],

 'mq': {
    defaultBreakpoint: 'sm',
    breakpoints: {
      sm: 450,
      md: 1250,
      lg: Infinity,
    }
  }
}

Usage

Click here for all options and features of vue-mq.

Development

  • Clone this repository
  • Install dependencies using yarn install or npm install
  • Start development server using npm run dev or with Node debugging on npm run dev-debug

License

MIT License

Copyright (c) Maarten Van Hoof

Credits

  1. vue-mq for providing the plugin.
  2. @nuxtjs for providing a excellent example on how to build a basic Nuxt.js module.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].