Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Nuxt | 48,795 | 5,317 | 2,904 | 12 hours ago | 318 | November 20, 2023 | 978 | mit | TypeScript | |
The Intuitive Vue Framework. | ||||||||||
Bootstrap Vue | 14,417 | 4,605 | 1,081 | a month ago | 170 | October 26, 2022 | 189 | mit | JavaScript | |
BootstrapVue provides one of the most comprehensive implementations of Bootstrap v4 for Vue.js. With extensive and automated WAI-ARIA accessibility markup. | ||||||||||
Vue Awesome Swiper | 12,559 | 2,243 | 587 | a year ago | 58 | March 19, 2022 | 309 | mit | JavaScript | |
🏆 Swiper component for @vuejs | ||||||||||
Framework | 11,062 | 62 | 8 months ago | 1,600 | October 11, 2023 | 2 | mit | |||
Old repo of Nuxt 3 framework, now on nuxt/nuxt | ||||||||||
Vue Storefront | 10,348 | 14 hours ago | 43 | mit | TypeScript | |||||
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. Newest updates: https://blog.vuestorefront.io. Always Open Source, MIT license. | ||||||||||
Doccano | 8,485 | a month ago | 32 | July 20, 2023 | 278 | mit | Python | |||
Open source annotation tool for machine learning practitioners. | ||||||||||
Vuex Persistedstate | 5,629 | 1,039 | 455 | 2 years ago | 38 | September 21, 2021 | 27 | mit | JavaScript | |
💾 Persist and rehydrate your Vuex state between page reloads. | ||||||||||
Primevue | 5,384 | 8 | 212 | 12 hours ago | 162 | November 28, 2023 | 284 | mit | CSS | |
Next Generation Vue UI Component Library | ||||||||||
Awesome | 4,949 | 6 days ago | 1 | |||||||
A curated list of awesome things related to Nuxt.js | ||||||||||
I Hate Regex | 4,163 | 7 months ago | 35 | Vue | ||||||
The code for iHateregex.io 😈 - The Regex Cheat Sheet |
A Vue directive that implements balance-text. Here is their demo page.
yarn add vue-balance-text
# or
npm install --save vue-balance-text
Vue = require('vue')
Vue.directive('balance-text', require('vue-balance-text'))
In nuxt.config.js
:
{
modules: [ 'vue-balance-text/nuxt/module' ]
}
Use in a Vue template like:
<h1 v-balance-text>A long title with many words that will wrap to multiple lines</h1>
When rendering HTML with v-html
, you need to tell v-balance-text to operate on the children vs on the element it's attached to:
<div v-balance-text.children v-html='body'></div>
Before:
After: