Gathering detailed insights and metrics for @chakra-ui/vue
Gathering detailed insights and metrics for @chakra-ui/vue
Gathering detailed insights and metrics for @chakra-ui/vue
Gathering detailed insights and metrics for @chakra-ui/vue
⚡️ Build scalable and accessible Vue.js applications with ease.
npm install @chakra-ui/vue
Typescript
Module System
Node Version
NPM Version
@chakra-ui/theme-vue@0.6.1
Updated on Mar 25, 2023
@chakra-ui/vue@0.13.1
Updated on Mar 25, 2023
@chakra-ui/nuxt@0.7.1
Updated on Mar 25, 2023
@chakra-ui/theme-vue@0.6.0
Updated on Jan 23, 2023
@chakra-ui/nuxt@0.7.0
Updated on Jan 23, 2023
@chakra-ui/vue@0.13.0
Updated on Jan 23, 2023
JavaScript (89.24%)
Vue (10.12%)
CSS (0.36%)
SCSS (0.24%)
HTML (0.03%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
1,863 Stars
2,075 Commits
138 Forks
21 Watchers
45 Branches
49 Contributors
Updated on Jul 08, 2025
Latest Version
0.13.1
Package Id
@chakra-ui/vue@0.13.1
Unpacked Size
2.60 MB
Size
470.08 kB
File Count
571
NPM Version
6.14.16
Node Version
12.22.12
Published on
Mar 25, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
@chakra-ui/vue gives you a set of accessible and composable Vue components that you can use to build your favourite applications and sites.
Made for Vue 2.X
Head over here => https://vue.chakra-ui.com
CBox
, CFlex
and
CStack
that make it easy to style your components by passing props.
Learn morearia-*
attributes.1yarn add @chakra-ui/vue emotion
or
1npm install @chakra-ui/vue emotion
Note: If you're using Nuxt, you need to install
@nuxtjs/emotion
package as well to server-side render your styles.
1yarn add @chakra-ui/vue emotion @nuxtjs/emotion
1. Import the Chakra UI plugin in your main.js
file.
1import Vue from 'vue' 2import Chakra from '@chakra-ui/vue' 3import App from './App.vue' 4 5Vue.use(Chakra) 6 7new Vue({ 8 el: '#app', 9 render: (h) => h(App) 10}).$mount()
2. Wrap your application inside the Chakra CThemeProvider
. We also recommend that you include the CReset
component to normalize all browser styling.
In your App.vue
file.
1<template> 2 <CThemeProvider> 3 <CReset /> 4 5 <!-- 6 Your application code goes here! 😁 7 --> 8 </CThemeProvider> 9</template> 10 11<script> 12 import { CThemeProvider, CReset } from '@chakra-ui/vue' 13 14 export default { 15 name: 'App', 16 components: { 17 CThemeProvider, 18 CReset 19 } 20 } 21</script>
If you'd like to toggle your app between dark and light mode, you can also wrap your application inside the ColorModeProvider
component.
3. Hurray!🎉 Now the fun can begin. You can start using components like so:
1<template> 2 <CThemeProvider> 3 <CReset /> 4 5 <!-- 6 Your application code goes here! 😁 7 --> 8 <CButton variantColor="blue"> 9 Chakra consumed ⚡️ 10 </CButton> 11 </CThemeProvider> 12</template> 13 14<script> 15 import { CThemeProvider, CReset, CButton } from '@chakra-ui/vue' 16 17 export default { 18 name: 'App', 19 components: { 20 CThemeProvider, 21 CReset, 22 CButton 23 } 24 } 25</script>
You can also view all developed components in Storybook!
Interested in contributing? See our open issues! Remember to take a look at our CONTRIBUTORS guide.
1yarn install 2yarn bootstrap 3yarn dev
Created by Jonathan Bakebwa
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 6/12 approved changesets -- score normalized to 5
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
146 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More