A minimalist dark design system for Vue.js. Based components designed for the insomniacs who enjoy dark interfaces as much as we do.
npm install @growthbunker/vuedarkmode
# Or if you prefer using yarn
yarn add @growthbunker/vuedarkmode
In your main.js
file:
import Vue from "vue"
import VueDarkMode from "@growthbunker/vuedarkmode"
Vue.use(VueDarkMode)
Create a new plugin in plugins/vuedarkmode.js
:
import Vue from "vue"
import VueDarkMode from "@growthbunker/vuedarkmode"
Vue.use(VueDarkMode)
Add this new plugin to nuxt.config.js
.
module.exports = {
// ...
plugins: [{ src: "@/plugins/vuedarkmode.js" }];
}
Get the latest version from jsdelivr, and import the JavaScript file in your page.
<script src="https://cdn.jsdelivr.net/npm/vue@2.5/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuedarkmode@latest/dist/vuedarkmode.min.js"></script>
We recommend our users to lock Vue Dark Mode’s version when using CDN. Requesting the latest version (as opposed to “latest major” or “latest minor”) is dangerous because major versions usually come with breaking changes. Only do this if you really know what you are doing.
BaseAlert: documentation | source code.
BaseAvatar: documentation | source code.
BaseBadge: documentation | source code.
BaseButton: documentation | source code.
BaseDivider: documentation | source code.
BaseHeading: documentation | source code.
BaseIcon: documentation | source code.
BaseProgressBar: documentation | source code.
BaseSpinner: documentation | source code.
BaseToast: documentation | source code.
FieldCheckbox: documentation | source code.
FieldImageUploader: documentation | source code.
FieldInput: documentation | source code.
FieldInputNumber: documentation | source code.
FieldRadio: documentation | source code.
FieldSelect: documentation | source code.
FieldTabs: documentation | source code.
FieldTextarea: documentation | source code.
FieldToggle: documentation | source code.
#vue-js #based-component #vue-dark-design