Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
pongo-components-vue
Advanced tools
Vue 3 components library based on Tailwind CSS for Pongo 🚀
Vue 3 components library based on Tailwind CSS for Pongo 🚀
npm install @heypongo/pongo-components-vue
OR install the public package:
npm install pongo-components-vue
This library uses TailwindCSS classes by default. To install TailwindCSS follow his official documentation: https://tailwindcss.com/docs/installation
The default theme of this library depends on the @tailwindcss/forms plugin. To use it, follow the steps on the plugin source page. https://github.com/tailwindlabs/tailwindcss-forms
// tailwind.config.js
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}', './node_modules/litepie-datepicker/**/*.js'],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.blueGray,
red: colors.red,
yellow: colors.amber,
green: colors.emerald,
blue: colors.cyan,
indigo: colors.blue,
purple: colors.violet,
pink: colors.pink,
'litepie-primary': colors.blue, // color system for light mode
'litepie-secondary': colors.coolGray // color system for dark mode
},
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans]
}
}
},
variants: {},
plugins: [require('@tailwindcss/forms')]
}
Here is an example for a Button :
<template>
<PongoButton>{{ $t('pages.myPage.buttons.action') }}</PongoButton>
</template>
<script>
import PongoButton from '@heypongo/pongo-components-vue'
export default {
components: {
PongoButton
}
}
</script>
Clone this repository
git clone git@github.com:heypongo/PongoComponentsVue.git
Copy .env.example
file to .env
and configure variables :
cp .env.example .env
Install dependencies
npm i
Run the server
npm run dev
Go to localhost:3000
FAQs
Vue 3 components library based on Tailwind CSS for Pongo 🚀
The npm package pongo-components-vue receives a total of 0 weekly downloads. As such, pongo-components-vue popularity was classified as not popular.
We found that pongo-components-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.