Releases: nuxt-modules/color-mode
v3.0.0
v3 of @nuxtjs/color-mode
requires either Nuxt Bridge or Nuxt 3. If you are using Nuxt 2 without Bridge, you should continue to use v2.
🔥 Notable changes
- Uses
@nuxt/module-builder
to build module. - Refactor structure (
lib
->src
/dist
,templates
->runtime
) - rewrite in TypeScript
- Move from templating options to creating a virtual module for greater performance
- Use
esbuild
to minify the script - note:⚠️ it's likely this raises the minimum browser target⚠️
👉 Migration
-
The main change between Nuxt 2 -> Nuxt 3 is that you will define your color mode at the page level with
definePageMeta
:<template> <h1>This page is forced with light mode</h1> </template> <script> - export default { - colorMode: 'light', - } + definePageMeta({ + colorMode: 'light', + }) </script>
⚠️ If you are using Nuxt Bridge, you should not usedefinePageMeta
but instead continue using the component optioncolorMode
. -
The
$colorMode
helper remains the same, but there is also a new composable (useColorMode
) which is the recommended way of accessing color mode information. -
If you were directly importing color mode configuration types, note that this has been renamed to
ModuleOptions
.
v2.1.1
v2.1.0
v2.0.10
v2.0.4
v2.0.3
v2.0.2
v2.0.1
v2.0.0
Notes
⚠️ The breaking change is only if you are using thecookie
option in the V1, if you don't use it, you can upgrade easily.- 📘 Read the updated documentation
- 🎮 Checkout the updated demo
Force a color mode
You can force the color mode at the page level (only parent) by setting the colorMode
property:
<template>
<h1>This page is forced with light mode</h1>
</template>
<script>
export default {
colorMode: 'light',
}
</script>
This feature is perfect for implementing dark mode to a website incrementally by setting the non-ready pages to colorMode: 'light'
.
We recommend to hide or disable the color mode picker on the page since it won't be able to change the current page color mode, using $colorMode.forced
value.
See example: https://color-mode.nuxtjs.app/light
Local Storage only
This will also fixes #38
Using a cookie is only worth for doing server-side rendering with no cache, where actually localStorage work in every-case and won't lead to a flash on client-side anyway.
This also simplify the options and reduce the dependency with the cookie
package.
To customize the storage key, you now have to use the storageKey
property instead of cookie.key
.