
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
A Vue 3 component library for Quaily.
If you are an AI coding agent integrating Quail UI into another frontend project, start with these two files:
npm install quail-ui
Initialize Quaily UI in your main.js/main.ts file:
import { createApp } from 'vue'
import { QuailUI } from 'quail-ui'
import 'quail-ui/style.css'
const app = createApp(App)
app.use(QuailUI)
app.mount('#app')
Use components in your .vue files:
<template>
<QButton class="primary" @click="handleClick">
Click Me
</QButton>
<QInput v-model="text" placeholder="Enter text..." />
<QDialog v-model="showDialog" title="Hello">
<p>Dialog content here</p>
</QDialog>
</template>
You can use Quaily UI directly in HTML without any build tools:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/quail-ui/dist/index.css" />
<script type="importmap">
{
"imports": {
"vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.prod.js",
"quail-ui": "https://unpkg.com/quail-ui/dist/index.js"
}
}
</script>
</head>
<body>
<div id="app">
<q-button class="primary">Hello</q-button>
<q-fence text="This is a notice" type="warning"></q-fence>
</div>
<script type="module">
import { createApp } from 'vue'
import { QuailUI } from 'quail-ui'
const app = createApp({})
app.use(QuailUI)
app.mount('#app')
</script>
</body>
</html>
| Component | Description |
|---|---|
| QButton | Button with variants (primary, outlined, plain, danger, etc.) |
| QInput | Text input with validation and slots |
| QTextarea | Multi-line text input |
| QDialog | Modal dialog |
| QMenu | Dropdown menu |
| QTabs | Tab navigation |
| QSwitch | Toggle switch |
| QProgress | Progress bar |
| QAvatar | User avatar |
| QPagination | Page navigation |
| QFence | Alert/notice box |
| ... | And more |
Quail UI includes three built-in themes:
lightdarkmorphUse the exported theme helpers:
import { applyTheme, resolveInitialTheme } from 'quail-ui'
// Initialize from localStorage / system preference
const initialTheme = resolveInitialTheme()
applyTheme(initialTheme)
// Switch theme
applyTheme('light')
applyTheme('dark')
applyTheme('morph')
// Optional: switch without persisting to localStorage
applyTheme('morph', false)
applyTheme updates document.body.dataset.theme and toggles .dark/.light body classes automatically.
For legacy usage, dark mode still works by toggling the .dark class on <body>.
MIT
FAQs
A Vue 3 component library for [Quaily](https://quaily.com).
We found that quail-ui demonstrated a healthy version release cadence and project activity because the last version was released less than 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.