Skip to content

Vue component for the Website Carbon Badge compatible with Vue 3

Notifications You must be signed in to change notification settings

niklashaug/vue-carbonbadge

Repository files navigation

vue-carbonbadge

Vue component for the Website Carbon badge.

Installation

via npm

npm install vue-carbonbadge

or via yarn

yarn add vue-carbonbadge

Usage

<template>
    <CarbonBadge />
</template>

<script setup>
    import CarbonBadge from "vue-carbonbadge";
</script>

Customization

Toggling dark mode

<CarbonBadge :dark="true" />

If the dark property is not specified, dark mode is detected as per user system preferences.